-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
43 lines (43 loc) · 1002 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": "Blackboard Bullshit",
"author": "Ahmed Ashraf",
"description": "An extension to download recorded videos from Blackboard Ultra",
"version": "1.0",
"browser_action": {
"default_title": "Blackboard Bullshit",
"default_icon": {
"38": "icons/38.png",
"19": "icons/19.png"
},
"default_popup": "ui/popup.html"
},
"icons": {
"16": "icons/16.png",
"48": "icons/48.png",
"128": "icons/128.png"
},
"permissions": [
"tabs",
"background",
"downloads",
"activeTab",
"*://*.bbcollab.com/*"
],
"content_scripts": [
{
"matches": [
"*://*.bbcollab.com/*"
],
"js": [
"scripts/content.js"
]
}
],
"background": {
"scripts": [
"scripts/background.js"
],
"persistent": false
}
}