-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
36 lines (31 loc) · 770 Bytes
/
manifest.json
File metadata and controls
36 lines (31 loc) · 770 Bytes
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
//主配置文件
{
"manifest_version": 2,
"name": "JS机器人",
"description": "这是一款借助chrome extent开发的微信机器人>>>>QQ284751067",
"version": "1.0",
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"devtools_page": "devtools.html",
"background": {
"scripts": ["background01.js"]
},
"content_scripts": [
{
"matches": ["https://wx2.qq.com/","https://wx.qq.com/"],
//"css": ["mystyles.css"],
"js": ["jquery-2.0.3.js", "content01.js"]
}
],
"permissions": [
"activeTab",
"tabs",
"https://login.weixin.qq.com/*",
"https://www.baidu.com/*",
"https://wx2.qq.com/*",
"https://wx.qq.com/*"
//"https://ajax.googleapis.com/"
]
}