Inspect and view changes in pTrack - suivi de prix cdiscount 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
{
"manifest_version": 2,
"name": "pTrack - Suivi des prix Cdiscount",
"description": "Cette extension permet de suivre les prix cdiscount",
"version": "0.2.0",
"browser_action": {
"default_icon": "Images/cd.png",
//"default_popup": "popup.html",
"default_title": "pTrack - Suivi des prix Cdiscount"
},
"icons": {
"16": "Images/cd16.png",
"48": "Images/cd48.png",
"128": "Images/cd128.png"
},
"permissions": [
"tabs",
"*://*.ptrack.fr/*",
"*://*.cdiscount.fr/*",
"*://*.cdiscount.com/*",
"notifications",
"activeTab",
"storage"
],
"author": "pTrack.fr",
"homepage_url": "https://www.ptrack.fr",
"content_scripts": [
{
"matches": [
"*://*.ptrack.fr/*",
"*://*.cdiscount.fr/*",
"*://*.cdiscount.com/*"
],
"js": [ "utile.js", "jquery.min.js", "content.js" ],
"css": [ "content.css" ]
}
],
"background": {
"scripts": [ "utile.js", "jquery.min.js", "background.js" ]
//"persistent": false
}
}