Price tracker, web page content tracker.
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_EXTENSION_NAME__",
"short_name": "__MSG_EXTENSION_SHORT_NAME__",
"description": "__MSG_EXTENSION_DESCRIPTION__",
"default_locale": "en",
"version": "2.3.20",
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"*://*/*"
],
"js": [
"content.js"
],
"run_at": "document_end"
}
],
"permissions": [
"tabs",
"http://*/*",
"https://*/*",
"contextMenus",
"notifications",
"activeTab",
"unlimitedStorage"
],
"icons": {
"16": "img/icon.png",
"128": "img/icon.png"
},
"browser_action": {
"default_title": "Otsledit",
"default_icon": "img/icon.png",
"default_popup": "popup.html"
},
"options_page": "/dashboard/index.html",
"web_accessible_resources": [
"/dashboard/index.html"
],
"content_security_policy": "script-src 'self' object-src 'self'"
}