WebExtension/manifest.json
2024-03-14 22:11:08 +01:00

26 lines
476 B
JSON

{
"manifest_version": 2,
"name": "yt",
"version": "1.0",
"description": "Adds a red border to all webpages matching mozilla.org.",
"web_accessible_resources":["newpipe_subscriptions_202403101004.json"],
"permissions":["tabs"],
"icons": {
"48": "icons/border-48.png"
},
"browser_action":{
"default_title":"Jonnis yt plugin",
"default_icon":{
"48":"icons/border-48.png"
}
},
"background":{
"scripts": ["background.js"]
}
}