-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmanifest.json
More file actions
42 lines (42 loc) · 1.01 KB
/
manifest.json
File metadata and controls
42 lines (42 loc) · 1.01 KB
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
{
"name":"自动填充密码器",
"description":"这是一款登录页面,自动填充密码chrome浏览器插件,By Heavy",
"version":"1.0.0",
"manifest_version":2,
"browser_action":{
"default_icon":"icons/icon.png",
"default_title":"自动填充密码器",
"default_popup": "popup.html"
},
"icons":{
"16": "icons/icon.png",
"19": "icons/icon.png",
"38": "icons/icon.png",
"48": "icons/icon.png",
"128": "icons/icon.png"
},
"permissions": [
"http://*/",
"bookmarks",
"tabs",
"background",
"history"
],
"background": {
"scripts": ["js/jquery.min.js","background/main.js"]
},
"content_scripts": [
{
"all_frames": true,
"js": [
"content/main.js"
],
"matches": [
"http://*/*",
"https://*/*",
"file:///*"
],
"run_at": "document_end"
}
]
}