Inspect and view changes in Sugar: Coupon Codes & Deals source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 2,
"name": "__MSG_manifest_name__",
"short_name": "__MSG_manifest_short_name__",
"description": "__MSG_manifest_description__",
"version": "3.0.0",
"minimum_chrome_version": "20",
"default_locale": "en",
"permissions": [
"storage",
"tabs"
],
"web_accessible_resources": [
"src/*"
],
"externally_connectable": {
"matches": [
"*://*.sugar.promo/*"
]
},
"content_scripts": [
{
"matches": [
"*://sugar.promo/register?ext=true"
],
"js": [
"src/scripts/jquery/jquery-3.5.1.min.js",
"src/core.js",
"src/content-ext.js"
]
},
{
"matches": [
"<all_urls>"
],
"js": [
"src/scripts/jquery/jquery-3.5.1.min.js",
"src/scripts/axios.min.js",
"src/common.js",
"src/core.js",
"src/scripts/loading-bar.js",
"src/content.js"
],
"css": [
"src/styles/content.css",
"src/styles/loading-bar.css"
],
"exclude_matches": [
"*://sugar.promo/*ext=true"
]
}
],
"background": {
"scripts": [
"src/scripts/jquery/jquery-3.5.1.min.js",
"src/scripts/jquery/jquery-ui.min.js",
"src/scripts/jquery/jquery.md5.js",
"src/scripts/js.cookie.js",
"src/scripts/js.local-session.js",
"src/scripts/js.storage.js",
"src/scripts/axios.min.js",
"src/common.js",
"src/core.js",
"src/background.js"
],
"persistent": true
},
"icons": {
"128": "images/sugar-128.png"
},
"browser_action": {
"default_icon": {
"19": "images/icon_inactive_19.png",
"38": "images/icon_inactive_38.png"
},
"default_title": "__MSG_manifest_default_title__"
}
}