Inspect and view changes in Helfen Targeting Button 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",
"name": "Helfen Targeting Button",
"description": "Helfen Targeting Button",
"version": "1.6",
"manifest_version": 2,
"permissions": [
"tabs",
"storage",
"https://facebook.com/",
"https://*.facebook.com/",
"*://helfen.tech/*",
"*://127.0.0.1/"
],
"browser_action": {
"default_popup": "popup.html",
"default_icon": "images/icon96.png"
},
"icons": {
"48": "images/icon48.png",
"96": "images/icon96.png",
"128": "images/icon128.png"
},
"background": {
"scripts": [
"common/api.js",
"background.js"
],
"persistent": false
},
"web_accessible_resources": [
"images/*"
],
"content_scripts": [
{
"matches": [
"https://facebook.com/*",
"https://*.facebook.com/*"
],
"css": [
"fb/css/style.css"
],
"js": [
"external/jquery-3.5.1.min.js",
"external/easytooltip.js",
"external/amplitude-6.0.1-min.gz.js",
"fb/utils.js",
"common/analytics.js",
"fb/facebook_pages.js",
"fb/mutation_observer.js",
"fb/content_script.js"
],
"run_at": "document_idle",
"all_frames": false
}
]
}