-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
30 lines (30 loc) · 924 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
{
"name": "Chat Companion Dev",
"version": "1.0.2",
"description": "A companion for Twitch and Youtube Chat. Allows you to count the occurance of words and see moderator deleted chat messages.",
"manifest_version": 3,
"author": "Usman Jamshed",
"action":{
"default_popup": "index.html",
"default_title": "Chat Companion"
},
"icons" : {
"16": "icons/favicon-16x16.png",
"48": "icons/android-chrome-48x48.png",
"128": "icons/android-chrome-128x128.png"
},
"background": { "service_worker": "js/background.js" },
"permissions": [
"activeTab",
"tabs"
],
"content_scripts": [{
"matches": [
"http://www.twitch.tv/*",
"https://www.twitch.tv/*",
"http://www.youtube.com/*",
"https://www.youtube.com/*"
],
"js": ["js/payload.js"]
}]
}