WebExtension/manifest.json

23 lines
476 B
JSON
Raw Normal View History

2024-03-14 21:11:08 +00:00
{
"manifest_version": 2,
"name": "yt",
"version": "1.0",
2024-03-14 21:14:06 +00:00
"description": "---",
2024-03-14 21:11:08 +00:00
"web_accessible_resources":["newpipe_subscriptions_202403101004.json"],
2024-03-16 23:40:33 +00:00
"permissions":["tabs","scripting"],
2024-03-14 21:11:08 +00:00
"icons": {
"48": "icons/border-48.png"
},
"browser_action":{
"default_title":"Jonnis yt plugin",
"default_icon":{
"48":"icons/border-48.png"
}
},
"background":{
"scripts": ["background.js"]
2024-03-16 23:40:33 +00:00
},
"host_permissions":["*://youtube.com/*"]
2024-03-14 21:11:08 +00:00
}