Files
1688-chrome-extension/manifest.json
T
2023-02-24 14:12:52 +08:00

24 lines
475 B
JSON

{
"manifest_version": 3,
"name": "Pay with cief",
"version": "1.0",
"description": "A Chrome extension that allows customers to pay with cief on the 1688.com checkout page.",
"permissions": [
"activeTab",
"tabs",
"nativeMessaging",
"scripting",
"notifications"
],
"background": {
"service_worker": "background.js"
},
"host_permissions": [
"https://1688.com/",
"https://shopkager.com/"
]
}