Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "__MSG_appName__",
"description": "__MSG_shortDesc__",
"default_locale": "en",
"version": "1.0.0",
"icons": {
"128": "images\/256.png"
},
"background": {
"service_worker": "global\/background.js"
},
"content_scripts": [
{
"js": [
"global\/options\/facebookOptions.js",
"global\/options\/gmailOptions.js",
"global\/options\/instagramOptions.js",
"global\/options\/linkedinOptions.js",
"global\/options\/redditOptions.js",
"global\/options\/twitterOptions.js",
"global\/options\/youtubeOptions.js",
"global\/options\/options.js",
"global\/storageConstants.js",
"global\/globalHelpers.js",
"website\/scripts\/websiteHelpers.js",
"website\/scripts\/htmlAtrributes.js",
"website\/scripts\/popupListener.js",
"website\/scripts\/Shortcuts\/shortcutsListener.js"
],
"matches": [
"*:\/\/*.youtube.com\/*",
"*:\/\/*.facebook.com\/*",
"*:\/\/*.linkedin.com\/*",
"*:\/\/*.twitter.com\/*",
"*:\/\/twitter.com\/*",
"*:\/\/*.reddit.com\/*",
"*:\/\/*.instagram.com\/*",
"*:\/\/*.google.com\/*"
],
"run_at": "document_start"
},
{
"css": [
"website\/css\/youtube\/youtube_desktop_styles.css",
"website\/css\/youtube\/youtube_mobile_styles.css"
],
"matches": [
"*:\/\/*.youtube.com\/*"
],
"run_at": "document_start"
}
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"128": "images\/256.png"
}
},
"permissions": [
"storage",
"activeTab"
]
}