-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
43 lines (38 loc) · 851 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
36
37
38
39
40
41
42
43
{
"manifest_version": 2,
"name": "Troupe",
"description": "An extension to provide information about actors and actresses straight from web pages",
"version": "1.0",
//"browser_action": {
//"default_icon": "sweeterman.jpg",
// "default_popup": "popup.html"
//},
"permissions": [
"activeTab",
"tabs",
"http://*/*",
"https://*/*"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
// Note: the jQuery version must appear first
"planb/jquery-3.0.0.min.js",
"planb/jquery.highlight.js",
"mark.es6.js",
"content.js",
"tipped-4.5.7-light/js/tipped/tipped.js",
"themoviedb-javascript/themoviedb.js"
// "themoviedb-javascript/themoviedb.min.js"
],
"css": [
"highlight.css",
"tipped-4.5.7-light/css/tipped/tipped.css"
],
"run_at": "document_end"
}
]
}