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,
"default_locale": "en",
"name": "__MSG_chrome_extension_name__",
"description": "__MSG_chrome_extension_description__",
"version": "3.1.1",
"icons": {
"16": "phone.png",
"32": "phone.png",
"48": "phone.png",
"128": "phone.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/aliexpress.ru\/*"
],
"css": [
"bundle.css"
],
"js": [
"background.js"
]
}
],
"permissions": [
"storage"
],
"action": {
"default_popup": "popup.html"
},
"background": {
"service_worker": "back.js",
"type": "module"
},
"externally_connectable": {
"matches": [
"*:\/\/*.aliexpress.com\/*",
"*:\/\/*.aliexpress.ru\/*",
"*:\/\/aliexpress.ru\/*",
"*:\/\/aliexpress.com\/*"
]
},
"content_security_policy": {
"extension_pages": "script-src 'self' ; object-src 'self'"
}
}