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",
"name": "Aliexpress Coupon Finder",
"description": "This extension finds coupons and discounts automatically",
"version": "1.8.9",
"manifest_version": 2,
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"default_locale": "en",
"browser_action": {
"default_icon": {
"32": "images\/[email protected]"
},
"default_title": "Aliexpress Coupons Finder"
},
"icons": {
"128": "images\/128x128.png"
},
"background": {
"scripts": [
"scripts\/background.js"
]
},
"content_scripts": [
{
"matches": [
"https:\/\/*.aliexpress.com\/*",
"http:\/\/*.aliexpress.com\/*"
],
"css": [
"styles\/contentscript.css"
],
"js": [
"scripts\/contentscript.js"
],
"run_at": "document_end",
"all_frames": false
},
{
"matches": [
"https:\/\/*.aliexpress.com\/*",
"http:\/\/*.aliexpress.com\/*"
],
"css": [
"styles\/contentscript.css"
],
"js": [
"scripts\/contentscript_curated_pages.js"
],
"run_at": "document_end",
"all_frames": true
}
],
"web_accessible_resources": [
"images\/*"
],
"permissions": [
"tabs",
"https:\/\/*.aliexpress.com\/*",
"http:\/\/*.aliexpress.com\/*",
"storage",
"webRequest",
"webRequestBlocking"
]
}