This repository was archived by the owner on May 10, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
55 lines (55 loc) · 1.28 KB
/
manifest.json
File metadata and controls
55 lines (55 loc) · 1.28 KB
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
53
54
55
{
"author": "jc9108",
"name": "ttv-favorites",
"description": "enables favorites on Twitch.tv",
"homepage_url": "https://github.com/jc9108/ttv-favorites",
"version": "1.3.2",
"manifest_version": 3,
"incognito": "split",
"icons": {
"16": "./images/icon-16.png",
"32": "./images/icon-32.png",
"48": "./images/icon-48.png",
"128": "./images/icon-128.png"
},
"action": {
"default_icon": {
"16": "./images/icon-16.png",
"24": "./images/icon-24.png",
"32": "./images/icon-32.png"
},
"default_title": "ttv-favorites",
"default_popup": "./popup/popup.html"
},
"permissions": [
"storage",
"tabs",
"webNavigation"
],
"background": {
"type": "module",
"service_worker": "./build/background.js"
},
"content_scripts": [{
"run_at": "document_idle",
"matches": [
"https://www.twitch.tv/*"
],
"exclude_matches": [
"https://www.twitch.tv/downloads/*",
"https://www.twitch.tv/jobs/*",
"https://www.twitch.tv/moderator/*",
"https://www.twitch.tv/p/*",
"https://www.twitch.tv/popout/*",
"https://www.twitch.tv/store/*",
"https://www.twitch.tv/team/*",
"https://www.twitch.tv/turbo/*"
],
"js": [
"./build/foreground.js"
],
"css": [
"./foreground/foreground.css"
]
}]
}