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": "AliExpress Order Tracker & Summarizer",
"version": "1.1",
"description": "Track, organize, and summarize your AliExpress orders efficiently. View shipping details and stay updated with ease.",
"permissions": [
"tabs",
"activeTab",
"scripting"
],
"host_permissions": [
"*:\/\/*.aliexpress.com\/*"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "",
"default_icon": "icon.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.aliexpress.com\/*"
],
"js": [
"content.js"
],
"run_at": "document_idle"
}
]
}