Inspect and view changes in AdWatcher-Lite 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": 3,
"name": "AdWatcher-Lite",
"version": "1.102",
"permissions": [
"webRequest",
"storage",
"activeTab",
"tabs"
],
"host_permissions": [
"https://www.facebook.com/ads/*",
"https://*.adwatcher.tech/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https://www.facebook.com/ads/*"
],
"js": [
"contentScript.js"
],
"run_at": "document_end"
}
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png",
"48": "icons/icon-48.png",
"64": "icons/icon-64.png"
}
},
"icons": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png",
"48": "icons/icon-48.png",
"64": "icons/icon-64.png"
}
}