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": "Auto Coupon Finder",
"version": "2.0.0",
"description": "Automatically finds and applies coupon codes on e-commerce websites. This extension uses affiliate links for monetization.",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"default_title": "Auto Coupon Finder"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"content_script.js"
],
"run_at": "document_end"
}
],
"permissions": [
"storage",
"tabs",
"notifications",
"scripting",
"contextMenus",
"webNavigation",
"alarms"
],
"host_permissions": [
"*:\/\/*\/*"
],
"web_accessible_resources": [
{
"resources": [
"web_scraper.js",
"community_db.js",
"ml_engine.js",
"submit_coupon.html",
"submit_coupon.js",
"welcome.html",
"welcome.js",
"statistics.html",
"statistics.js",
"settings.html",
"settings.js",
"affiliate.js",
"affiliateService.js",
"api.js",
"codes.json",
"content.js",
"overlay.css",
"coupons_deals.html",
"coupons_deals.js",
"chart.min.js",
"chart-error-handler.js",
"icons\/*"
],
"matches": [
"*:\/\/*\/*"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
}
}