-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
45 lines (42 loc) · 1.05 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
37
38
39
40
41
42
43
44
45
{
"name": "APK Downloader for Myket.ir",
"version": "0.0.6",
"author": "Ya Zahra <https://github.com/Ya-Zahra>",
"manifest_version": 2,
"description": "Generate direct link to the apk files for Myket.ir app store",
"icons": {
"48": "icons/48.png",
"96": "icons/96.png"
},
"content_scripts": [{
"matches": [
"*://myket.ir/app/*"
],
"js": [
"src/injectScript.js"
],
"run_at": "document_end"
}
],
"options_ui": {
"page": "src/options.html",
"browser_style": true
},
"background": {
"scripts": ["src/background.js"]
},
"browser_action": {
"default_title": "APK Downloader for Myket option"
},
"permissions": [
"storage",
"https://myket.ir/app/*",
"https://apiserver.myket.ir/*"
],
"browser_specific_settings": {
"gecko": {
"id": "myket_apk_direct_link@ya.zahra",
"strict_min_version": "57.0"
}
}
}