forked from mozilla-rally/study-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
52 lines (52 loc) · 1.08 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"description": "Facilitate UW research regarding YouTube browsing activities.",
"author": "UW",
"manifest_version": 2,
"name": "YouTube Research Extension",
"version": "0.0.1",
"homepage_url": "https://github.com/GNU-Linuxer/youtube-study-firefox-extension",
"browser_specific_settings": {
"gecko": {
"id": "rally-study-template@mozilla.org",
"strict_min_version": "87.0"
}
},
"options_ui": {
"page": "public/options.html",
"open_in_tab": true
},
"browser_action": {
"default_title": "Options"
},
"permissions": [
"<all_urls>",
"geolocation",
"tabs",
"idle",
"webNavigation",
"webRequest",
"storage",
"unlimitedStorage"
],
"content_scripts": [
{
"matches": [
"http://localhost/*",
"https://rally-web-spike.web.app/*"
],
"js": [
"dist/content/rally-content.js"
]
}
],
"background": {
"scripts": [
"dist/browser-polyfill.js",
"dist/background.js"
]
},
"icons": {
"48": "assets/icon48px.svg"
},
"incognito": "not_allowed"
}