forked from ffto/iHeart-Chrome-Extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
38 lines (38 loc) · 1.34 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
38
{
// basic info --------------------------------------------------------------
"name" : "iHeart",
"version" : "1.0",
"description" : "<3 the sites you love",
"manifest_version" : 2,
"icons" : {"128": "images/icon.png"},
"background" : {
"page" : "html/background.html"
},
// type --------------------------------------------------------------
"browser_action" : {
"default_icon" : "images/icon.png",
"default_popup" : "html/popup.html"
},
// page injection --------------------------------------------------------------
"content_scripts" : [{
"matches" : [ "http://*/*","https://*/*" ],
"exclude_globs" : [ "*.jpg","*.jpeg","*.gif","*.png","*.bmp","*.webp",
"*.css","*.swf","*.js","*.zip","*.rar","*.tar","*.tar.gz","*.tgz","*.tar.bz2","*.tbz2",
"*.doc","*.docx","*.ppt","*.pptx","*.xls","*.xlsx","*.pdf","*.xml","*.txt",
"*.mpg","*.mpeg","*.qt","*.mp4","*.m4v","*.m4a","*.mp3","*.ogv","*.ogm","*.ogg","*.oga","*.webm","*.wav",
"*.","*." ],
"css" : [ "css/inject.css" ],
"js" : [ "js/jquery.js" , "js/inject.js" ],
"run_at" : "document_start"
}],
// imports & permissions --------------------------------------------------------------
"web_accessible_resources" : [
"html/iframe/*"
],
"permissions" : [
"tabs",
"webRequest",
"http://*/*",
"https://*/*"
]
}