mirror-chatterino2/browser_ext/manifest.json
2018-05-28 18:25:19 +02:00

34 lines
523 B
JSON

{
"name": "Chatterino",
"version": "1.0",
"description": "xd",
"permissions": [
"tabs",
"nativeMessaging"
],
"icons": {
"256": "icon.png"
},
"manifest_version": 2,
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"browser_action": {
"default_popup": "popup.html"
},
"content_scripts": [
{
"run_at": "document_end",
"matches": [
"https://www.twitch.tv/*"
],
"js": [
"inject.js"
]
}
]
}