-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
43 lines (33 loc) · 955 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
{
"name": "Backfeed Qrate Chrome Extension",
"manifest_version": 2,
"version": "0.0.0",
"description": "Your lovely qrate companion!",
"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": ["dist/css/main.css"],
"js": [
"bower/jquery/dist/jquery.min.js",
"bower/aws-sdk/dist/aws-sdk.min.js",
"js/contentScript.js"
],
"run_at": "document_end"
}],
"permissions": [
"storage"
],
"web_accessible_resources": [
"html/*.html",
"components/**/*.html"
]
}