The only and best alternative to the classic Turbo Ad Finder
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"background": {
"page": "background.html"
},
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html",
"default_title": "Turbo Ad Finder 2.0"
},
"content_scripts": [
{
"js": [
"content.js"
],
"matches": [
"*://*.facebook.com/*"
]
}
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"description": "The only and best alternative to the classic Turbo Ad Finder",
"icons": {
"16": "icon.png",
"128": "icon.png"
},
"manifest_version": 2,
"name": "Turbo Ad Finder 2.0",
"options_page": "list.html",
"permissions": [
"unlimitedStorage",
"storage",
"tabs"
],
"version": "1.8",
"web_accessible_resources": [
"*.png",
"*.svg"
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}