-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmanifest.json
81 lines (81 loc) · 1.92 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"manifest_version": 3,
"name": "SIPD RI tools",
"description": "Chrome extension untuk mengoptimalkan aplikasi sipd-ri.kemendagri.go.id",
"version": "1.0.0",
"icons": {
"16": "img/logo-small.png",
"48": "img/logo-small.png",
"128": "img/logo-small.png"
},
"background": {
"service_worker": "background_all.js"
},
"content_scripts": [
{
"matches": [
"https://sipd-ri.kemendagri.go.id/*"
],
"css": [
"css/content.css",
"css/select2.min.css"
],
"js": [
"config.js",
"js/jquery.min.js",
"js/crypto-js.min.js",
"js/select2.min.js",
"js/content/content_scripts.js",
"js/content/functions.js",
"js/content/rpjpd.js",
"js/content/rpd.js",
"js/content/login.js",
"js/content/rpjmd/rpjmd.js",
"js/content/rpjmd/rpd.js",
"js/content/renstra/renstra.js",
"js/content/master/pengaturan_sipd.js",
"js/content/master/dashboard_sipd.js",
"js/content/master/skpd.js",
"js/content/master/user.js",
"js/content/master/sub_giat.js",
"js/content/master/label_prioritas.js",
"js/content/master/spm.js",
"js/content/master/akun.js",
"js/content/master/sumber_dana.js",
"js/content/usulan/standar_harga.js",
"js/content/usulan/kamus.js",
"js/content/usulan/data_asmas.js",
"js/content/usulan/data_pokir.js",
"js/content/renja/renja.js",
"js/content/renja/input_renja.js",
"js/content/renja/monev_sumber_dana.js",
"js/content/renja/pendapatan/pendapatan.js",
"js/content/renja/pembiayaan/pembiayaan.js",
"js/content/app.js"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
{
"resources": [
"/config.js",
"/content_message.js",
"/js/*",
"/img/*",
"/css/*",
"/excel/*"
],
"matches": [
"https://sipd-ri.kemendagri.go.id/*"
]
}
],
"host_permissions": ["<all_urls>"],
"permissions": [
"webRequest",
"activeTab",
"storage",
"tabs"
]
}