Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "DropAds - Facebook Ad Finder & AdSpy Tool",
"version": "1.0.3",
"description": "Find and save Facebook & Instagram ads from your feed.",
"author": "navorite",
"homepage_url": "https:\/\/github.com\/navorite",
"action": {
"default_title": "DropAds - Ad Finder & AdSpy Tool",
"default_popup": ".\/src\/popup\/index.html",
"default_icon": {
"16": ".\/favicons\/16.png",
"32": ".\/favicons\/32.png",
"64": ".\/favicons\/64.png"
}
},
"background": {
"service_worker": "src\/scripts\/background.js",
"type": "module"
},
"permissions": [
"storage",
"unlimitedStorage"
],
"host_permissions": [
"*:\/\/*.facebook.com\/*",
"*:\/\/*.instagram.com\/*",
"*:\/\/*.fbcdn.net\/*",
"*:\/\/*.cdninstagram.com\/*",
"https:\/\/dropads.vercel.app\/*"
],
"content_scripts": [
{
"matches": [
"*:\/\/*.facebook.com\/*"
],
"js": [
"src\/scripts\/facebook.js"
],
"run_at": "document_start"
},
{
"matches": [
"*:\/\/*.instagram.com\/*"
],
"js": [
"src\/scripts\/instagram.js"
],
"run_at": "document_start"
}
],
"icons": {
"16": ".\/favicons\/16.png",
"32": ".\/favicons\/32.png",
"48": ".\/favicons\/48.png",
"64": ".\/favicons\/64.png",
"96": ".\/favicons\/96.png"
},
"web_accessible_resources": [
{
"resources": [
"src\/scripts\/facebook\/intercept.js"
],
"matches": [
"*:\/\/*.facebook.com\/*"
]
},
{
"resources": [
"src\/scripts\/instagram\/intercept.js"
],
"matches": [
"*:\/\/*.instagram.com\/*"
]
}
]
}