Twitch Prime Subscription Reminder

Twitch Prime Subscription Reminder

This will switch the purple 'Subscribe' button to a bright orange when your free subscription is ready to be used

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Twitch Prime Subscription Reminder",
  "description": "This will switch the purple 'Subscribe' button to a bright orange when your free subscription is ready to be used",
  "version": "1.0.6resigned1",
  "icons": {
    "64": "icons/icon64.png",
    "128": "icons/icon128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.twitch.tv/*"
      ],
      "js": [
        "check_subscription.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": {
      "64": "icons/icon64.png",
      "128": "icons/icon128.png"
    },
    "default_title": "Twitch Prime Subscription Reminder"
  },
  "permissions": [
    "tabs"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{30304a69-f938-4265-8f18-40908507dd5b}"
    }
  }
}