-
Notifications
You must be signed in to change notification settings - Fork 3
/
manifest.json
37 lines (36 loc) · 1.03 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
{
"manifest_version": 2,
"name": "Linguist Unknown",
"description": "Language Savant for unknown, lost or new programming languages on GitHub.",
"version": "1.0.7.1",
"browser_action": {
"default_icon": "./img/linguist-unknown-icon.png",
"default_popup": "./src/views/popup.html"
},
"icons": {
"16": "./img/linguist-unknown-icon-16.png",
"48": "./img/linguist-unknown-icon-48.png",
"128": "./img/linguist-unknown-icon-128.png"
},
"permissions": [
"tabs",
"notifications",
"http://*/",
"https://*/",
"activeTab",
"storage"
],
"content_scripts": [
{
"matches": ["http://www.github.com/*",
"https://www.github.com/*",
"http://github.com/*",
"https://github.com/*"],
"css": ["./src/css/linguist_style.css"],
"js": ["./src/scripts-min/js-yaml.min.js",
"./src/scripts-min/linguist-bootstrap-chrome.min.js",
"./src/scripts-min/linguist.min.js"],
"run_at": "document_start"
}
]
}