mirror-chatterino2/browser_ext/manifest.json

22 lines
343 B
JSON
Raw Normal View History

2018-04-09 22:59:19 +02:00
{
"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"
}
}