WebExtension/manifest.json

32 lines
622 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-18 10:17:23 +00:00
"permissions":["activeTab","<all_urls>","tabs"],
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
},
2024-03-17 00:11:26 +00:00
"host_permissions":["*://youtube.com/*"],
"content_scripts": [
{
"matches": [
2024-03-17 13:40:01 +00:00
"<all_urls>"
2024-03-17 00:11:26 +00:00
],
2024-03-18 20:22:16 +00:00
"js": ["spawn.js"],
"run_at":"document_end"
2024-03-17 00:11:26 +00:00
}
]
2024-03-14 21:11:08 +00:00
}