-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
58 lines (58 loc) · 1.26 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
{
"name": "Auto Fill Form Data",
"version": "0.0.3",
"description": "auto fill and autocomplete user data with key name",
"icons": {
"16": "img/icon16.png",
"32": "img/icon32.png",
"48": "img/icon48.png",
"128": "img/icon128.png"
},
"permissions": [
"storage",
"http://*/",
"https://*/",
"tabs"
],
"background": {
"scripts": [
"js/background.min.js"
],
"persistent": false
},
"browser_action": {
"default_icon": "img/icon_disable.png",
"default_popup": "popup.html"
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"js/jquery-1.8.3.min.js",
"js/main_script/in_fill_data_script.min.js"
],
"css": [
"css/jquery-ui.min.css"
],
"all_frames": true
}
],
"manifest_version": 2,
"content_security_policy": "script-src 'self' 'unsafe-eval' https://ssl.google-analytics.com; object-src 'self'",
"web_accessible_resources": [
"js/jquery-1.8.3.min.js",
"js/script/autocomplete_keys.min.js",
"js/script/scc_basic_info.min.js",
"js/script/certificate/ccc_nielit.min.js",
"js/script/certificate/o_level_nielit.min.js",
"js/script/Railway/railway_rrb.min.js",
"js/script/upsc/upsc_online.min.js"
]
}