Pricemeister checks for better prices on eBay while you are shopping on Amazon!
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",
"name": "Pricemeister",
"short_name": "Pricemeister",
"description": "__MSG_manifest_description__",
"default_locale": "en",
"homepage_url": "https://www.pricemeister.net/",
"version": "4.4",
"manifest_version": 2,
"icons": {
"16": "img/icons/pricemeister-color-16.png",
"32": "img/icons/pricemeister-color-32.png",
"48": "img/icons/pricemeister-color-48.png",
"128": "img/icons/pricemeister-color-128.png"
},
"permissions": [
"declarativeContent",
"storage",
"https://api.pricemeister.net/*"
],
"content_scripts": [
{
"matches": [
"*://*.amazon.com/*",
"*://*.amazon.co.uk/*",
"*://*.amazon.de/*",
"*://*.amazon.fr/*",
"*://*.amazon.es/*",
"*://*.amazon.com.br/*",
"*://*.amazon.com.mx/*",
"*://*.amazon.com.au/*",
"*://*.amazon.cn/*",
"*://*.amazon.in/*",
"*://*.amazon.it/*",
"*://*.amazon.co.jp/*",
"*://*.amazon.ca/*",
"*://*.amazon.nl/*",
"*://*.amazon.sg/*"
],
"exclude_matches": [
"*://*/gp/your-account*"
],
"js": [
"src/config.js",
"src/amazon_scrapper.js",
"src/debug_bar.js",
"src/content_script.js"
],
"css": [
"src/styles.css"
]
}
],
"background": {
"scripts": [
"src/config.js",
"src/cache.js",
"src/background.js"
],
"persistent": false
},
"content_security_policy": "script-src 'self'; object-src 'self'",
"web_accessible_resources": [
"*://*/*",
"*.png",
"*.jpg",
"*.gif"
]
}