-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
36 lines (34 loc) · 1.07 KB
/
manifest.json
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
{
"name": "MotmaenBash | مطمئن باش",
"short_name": "MotmaenBash",
"description": "مطمئن باش | بررسی اصلالت درگاههای پرداخت ایرانی",
"homepage_url": "https://motmaenbash.milad.nu",
"version": "1.1.0",
"manifest_version": 3,
"author": "Milad Nouri",
"icons": {
"128": "assets/images/icon_128.png",
"16": "assets/images/icon_16.png",
"48": "assets/images/icon_48.png"
},
"action": {
"default_icon": "assets/images/icon_128.png",
"default_popup": "popup.html",
"default_title": "MotmaenBash"
},
"permissions": [ "tabs" ],
"background": {
"service_worker": "assets/js/background.js",
"type": "module"
},
"content_scripts": [ {
"css": [ "assets/css/payment-gateway-verify.css" ],
"exclude_globs": [ "*://www.shaparak.ir/*", "*://shaparak.ir/*" ],
"js": [ "assets/js/content-script.js" ],
"matches": [ "https://*.shaparak.ir/*" ]
} ],
"web_accessible_resources": [ {
"resources": [ "assets/images/sign.png" ],
"matches": [ "https://*.shaparak.ir/*" ]
} ]
}