Get the best price on your favorite products with CNET Shopping. When we find deals, we save you an average of $27 per purchase.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 3,
"name": "CNET Shopping",
"short_name": "CNET Shopping",
"author": "CNET Shopping",
"version": "14.16",
"description": "Get the best price on your favorite products with CNET Shopping. When we find deals, we save you an average of $27 per purchase.",
"permissions": [
"tabs",
"webNavigation",
"webRequest",
"storage",
"cookies"
],
"host_permissions": [
"http://*/",
"https://*/"
],
"background": {
"service_worker": "js/background.js"
},
"content_scripts": [
{
"all_frames": false,
"js": [
"vendor/jquery.min.js",
"vendor/purify.min.js",
"js/app.js"
],
"matches": [
"http://*/*",
"https://*/*"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
{
"resources": [
"html/popup.html",
"css/popup.css",
"fonts/*",
"images/*",
"html/*",
"css/*",
"js/webScript.js",
"js/app.css",
"vendor/*"
],
"matches": [
"http://*/*",
"https://*/*"
]
}
],
"action": {
"default_title": "CNET Shopping",
"default_icon": {
"20": "images/cnet-logo-20.png",
"30": "images/cnet-logo-30.png",
"40": "images/cnet-logo-40.png"
}
},
"icons": {
"16": "images/cnet-logo-16.png",
"32": "images/cnet-logo-48.png",
"48": "images/cnet-logo-48.png",
"128": "images/cnet-logo-128.png"
},
"options_ui": {
"page": "html/options.html"
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}