formating

This commit is contained in:
array-in-a-matrix 2022-01-11 15:02:35 -05:00
parent 42064fc497
commit d09030a083

View file

@ -6,23 +6,21 @@
"description": "Makes the YouTube progress bar cycle through different RGB colors.", "description": "Makes the YouTube progress bar cycle through different RGB colors.",
"browser_specific_settings": { "browser_specific_settings": {
"gecko": { "gecko": {
"id": "tensor@arrayinamatrix.xyz", "id": "tensor@arrayinamatrix.xyz",
"strict_min_version": "48.0" "strict_min_version": "48.0"
} }
}, },
"icons": { "icons": {
"48": "icons/icon-48.jpg", "48": "icons/icon-48.jpg",
"96": "icons/icon-96.jpg" "96": "icons/icon-96.jpg"
}, },
"content_scripts": [ "content_scripts": [{
{ "matches": ["*://*.youtube.com/*"],
"matches": ["*://*.youtube.com/*"], "js": ["index.js"]
"js": ["index.js"] }],
}
],
"background": { "background": {
"scripts": ["index.js"] "scripts": ["index.js"]
@ -34,4 +32,4 @@
}, },
"permissions": ["activeTab", "tabs"] "permissions": ["activeTab", "tabs"]
} }