Chatterino Native Host

Chatterino Native Host

Replaces the chat on Twitch.tv with Chatterino. Only works on Windows.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Chatterino Native Host",
  "version": "1.5",
  "description": "Replaces the chat on Twitch.tv with Chatterino.",
  "permissions": [
    "tabs",
    "nativeMessaging",
    "storage"
  ],
  "icons": {
    "256": "icon.png"
  },
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "50.0"
    }
  },
  "manifest_version": 2,
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "https://www.twitch.tv/*"
      ],
      "js": [
        "inject.js"
      ]
    }
  ]
}