rgb-progress-bar/manifest.json

35 lines
651 B
JSON
Raw Normal View History

2021-06-13 16:01:26 -04:00
{
"manifest_version": 2,
"name": "RGB YouTube",
2022-01-11 12:15:33 -05:00
"version": "1.1",
2021-06-13 16:01:26 -04:00
"description": "Makes the YouTube progress bar cycle through different RGB colors.",
"browser_specific_settings": {
2022-01-11 15:02:35 -05:00
"gecko": {
"id": "tensor@arrayinamatrix.xyz",
"strict_min_version": "48.0"
}
},
2021-06-13 16:01:26 -04:00
"icons": {
2022-01-11 12:15:33 -05:00
"48": "icons/icon-48.jpg",
"96": "icons/icon-96.jpg"
2021-06-13 16:01:26 -04:00
},
2022-01-11 15:02:35 -05:00
"content_scripts": [{
"matches": ["*://*.youtube.com/*"],
"js": ["index.js"]
}],
2021-06-13 16:01:26 -04:00
"background": {
"scripts": ["index.js"]
},
"page_action": {
"default_icon": "icons/off.svg",
"browser_style": true
},
"permissions": ["activeTab", "tabs"]
2022-01-11 15:02:35 -05:00
}