-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
29 lines (29 loc) · 772 Bytes
/
Copy pathmanifest.json
File metadata and controls
29 lines (29 loc) · 772 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"manifest_version": 3,
"name": "SourceCalc - 1688 Profit Calculator",
"version": "0.1.0",
"description": "Instantly calculate your profit margin when sourcing from 1688 for Amazon, Shopify, and other platforms. See real costs including shipping, customs, and fees.",
"permissions": ["storage", "activeTab"],
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"content_scripts": [
{
"matches": ["*://*.1688.com/*"],
"js": ["content.js"],
"css": ["content.css"]
}
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons/icon16.png",
"48": "icons/icon48.png"
}
},
"background": {
"service_worker": "background.js"
}
}