-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
48 lines (48 loc) · 1.01 KB
/
manifest.json
File metadata and controls
48 lines (48 loc) · 1.01 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"manifest_version": 3,
"name": "蝦皮優惠券-查詢可用商品助手",
"version": "1.0",
"description": "快速查看優惠券可用商品,不用再猜哪些商品能折扣,省時又方便|支援優惠卷頁面、活動領券中心、商城券/店家券。",
"author": "movwei",
"permissions": [
"activeTab"
],
"host_permissions": [
"https://shopee.tw/*"
],
"content_scripts": [
{
"matches": [
"https://shopee.tw/*"
],
"js": [
"libs/sweetalert2.min.js",
"content.js"
],
"css": [
"content.css"
],
"run_at": "document_end"
}
],
"action": {
"default_popup": "popup.html",
"default_title": "優惠券查詢助手",
"default_icon": {
"128": "icons/icon128.png"
}
},
"icons": {
"128": "icons/icon128.png"
},
"web_accessible_resources": [
{
"resources": [
"libs/sweetalert2.min.js"
],
"matches": [
"https://shopee.tw/*"
]
}
]
}