NarkussLive

NarkussLive

Affiche un Fiddle lorsque Narkuss est en live ou le logo GGCN quand le stream est off.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "NarkussLive",
  "description": "Affiche un Fiddle lorsque Narkuss est en live ou le logo GGCN quand le stream est off.",
  "version": "0.1",
  "permissions": [
    "https://api.twitch.tv/",
    "notifications"
  ],
  "web_accessible_resources": [
    "fiddle128.png",
    "off.png"
  ],
  "browser_action": {
    "default_icon": "off.png"
  },
  "icons": {
    "16": "fiddle16.png",
    "48": "fiddle48.png",
    "128": "fiddle128.png"
  },
  "background": {
    "scripts": [
      "jquery-latest.min.js",
      "background.js"
    ]
  }
}