diff options
author | Ajay Ramachandran <[email protected]> | 2020-02-04 01:32:58 -0500 |
---|---|---|
committer | Ajay Ramachandran <[email protected]> | 2020-02-04 01:32:58 -0500 |
commit | 09a33c4252242f5184522af9973940c5a4954431 (patch) | |
tree | 8a2f284b55b871ae02d0f3a59f09eef43f20abfa /manifest/manifest.json | |
parent | da364b49f01f4af913319f83d4adeef8a9312132 (diff) | |
download | SponsorBlock-09a33c4252242f5184522af9973940c5a4954431.tar.gz SponsorBlock-09a33c4252242f5184522af9973940c5a4954431.zip |
Added manifest building.
Diffstat (limited to 'manifest/manifest.json')
-rw-r--r-- | manifest/manifest.json | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/manifest/manifest.json b/manifest/manifest.json new file mode 100644 index 00000000..b0d094be --- /dev/null +++ b/manifest/manifest.json @@ -0,0 +1,71 @@ +{ + "name": "__MSG_fullName__", + "short_name": "__MSG_Name__", + "version": "1.2.5", + "default_locale": "en", + "description": "__MSG_Description__", + "content_scripts": [ + { + "run_at": "document_start", + "matches": [ + "https://*.youtube.com/*", + "https://www.youtube-nocookie.com/embed/*" + ], + "all_frames": true, + "js": [ + "./js/vendor.js", + "./js/content.js" + ], + "css": [ + "content.css", + "./libs/Source+Sans+Pro.css", + "popup.css" + ] + } + ], + "web_accessible_resources": [ + "icons/LogoSponsorBlocker256px.png", + "icons/IconSponsorBlocker256px.png", + "icons/PlayerStartIconSponsorBlocker256px.png", + "icons/PlayerStopIconSponsorBlocker256px.png", + "icons/PlayerUploadIconSponsorBlocker256px.png", + "icons/PlayerUploadFailedIconSponsorBlocker256px.png", + "icons/upvote.png", + "icons/downvote.png", + "icons/report.png", + "icons/close.png", + "icons/PlayerInfoIconSponsorBlocker256px.png", + "icons/PlayerDeleteIconSponsorBlocker256px.png", + "popup.html" + ], + "permissions": [ + "storage", + "notifications", + "https://sponsor.ajay.app/*" + ], + "optional_permissions": [ + "*://*/*" + ], + "browser_action": { + "default_title": "__MSG_Name__", + "default_popup": "popup.html" + }, + "background": { + "scripts":[ + "./js/vendor.js", + "./js/background.js" + ] + }, + "icons": { + "16": "icons/IconSponsorBlocker16px.png", + "32": "icons/IconSponsorBlocker32px.png", + "64": "icons/LogoSponsorBlocker64px.png", + "128": "icons/LogoSponsorBlocker128px.png", + "256": "icons/LogoSponsorBlocker256px.png" + }, + "options_ui": { + "page": "options/options.html", + "open_in_tab": true + }, + "manifest_version": 2 +}
\ No newline at end of file |