-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
35 lines (35 loc) · 835 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
{
"manifest_version": 2,
"version": "1.0",
"name": "SO Tags Recommender",
"description": "A Chrome extension that recommends SO tags based on your title and body of a question.",
"icons":
{
"16": "images/logo-16.png",
"48": "images/logo-48.png",
"128": "images/logo-128.png"
},
"browser_action":
{
"default_icon": "images/logo-48.png",
"default_popup": "main.html"
},
"content_scripts":[
{
"matches": ["<all_urls>"],
"js": ["main.js", "tag_injector.js", "text_injector.js"]
}
],
"background": {
"scripts": [
"main.js",
"tag_injector.js",
"text_injector.js"
]
},
"permissions": [
"tabs",
"storage",
"activeTab"
]
}