dankCircle preloader for Twitch

dankCircle preloader for Twitch

Replace the twitch default preloader with the dankCircle emote.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "dankCircle preloader for Twitch",
  "short_name": "dankCircle",
  "version": "0.0.1",
  "description": "Replace the twitch default preloader with the dankCircle emote.",
  "icons": {
    "48": "images/pajaDank_48.png",
    "128": "images/pajaDank_128.png"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "script.js"
      ],
      "matches": [
        "*://*.twitch.tv/*"
      ],
      "exclude_globs": [
        "*://api.twitch.tv/*"
      ]
    }
  ],
  "permissions": [
    "*://*.twitch.tv/*"
  ],
  "web_accessible_resources": [
    "images/dankCircle.gif"
  ]
}