-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
41 lines (36 loc) · 1002 Bytes
/
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
{
"name": "APK Downloader for Cafebazaar.ir",
"version": "0.0.10",
"manifest_version": 2,
"description": "Generate download links for cafebazaar.ir Android apps",
"icons": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png",
"38": "icons/icon-38.png",
"64": "icons/icon-64.png",
"128": "icons/icon-128.png"
},
"background": {
"page": "src/background.html"
},
"content_scripts": [{
"matches": [
"*://cafebazaar.ir/app/*"
],
"js": [
"/src/injectScript.js"
],
"run_at": "document_end"
}
],
"permissions": [
"https://cafebazaar.ir/app/*",
"https://api.cafebazaar.ir/*"
],
"browser_specific_settings": {
"gecko": {
"id": "{C677ACFF-593E-40CC-A182-7C40543DFBEF}",
"strict_min_version": "54.0"
}
}
}