mirror-chatterino2/browser_ext/manifest.json

34 lines
523 B
JSON
Raw Normal View History

2018-04-09 22:59:19 +02:00
{
"name": "Chatterino",
"version": "1.0",
"description": "xd",
"permissions": [
2018-05-28 18:25:19 +02:00
"tabs",
"nativeMessaging"
2018-04-09 22:59:19 +02:00
],
"icons": {
"256": "icon.png"
},
"manifest_version": 2,
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"browser_action": {
"default_popup": "popup.html"
2018-05-28 18:25:19 +02:00
},
"content_scripts": [
{
"run_at": "document_end",
"matches": [
"https://www.twitch.tv/*"
],
"js": [
"inject.js"
]
}
]
2018-04-09 22:59:19 +02:00
}