veefeed

veefeed

Keep track of your YouTube and Twitch subscriptions

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "veefeed",
  "version": "0.10.5",
  "description": "Keep track of your YouTube and Twitch subscriptions",
  "applications": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "icons": {
    "128": "img/icon-128.png"
  },
  "permissions": [
    "https://www.twitch.tv/",
    "https://api.twitch.tv/",
    "https://www.youtube.com/",
    "https://haloruns.z20.web.core.windows.net/content/feeds/latestRecords.json",
    "https://www.speedrun.com/",
    "https://t.co/",
    "contextMenus",
    "cookies",
    "notifications",
    "storage"
  ],
  "author": "fent (https://github.com/fent)",
  "background": {
    "page": "background/background.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.youtube.com/watch?*v=*"
      ],
      "js": [
        "util/time.js",
        "util/hyperscript.js",
        "content/shared.js",
        "content/youtube.js"
      ],
      "css": [
        "content/style.css"
      ]
    },
    {
      "matches": [
        "https://www.twitch.tv/videos/*"
      ],
      "js": [
        "util/time.js",
        "util/hyperscript.js",
        "content/shared.js",
        "content/twitch.js"
      ],
      "css": [
        "content/style.css"
      ]
    }
  ],
  "browser_action": {
    "default_popup": "popup/popup.html"
  },
  "options_ui": {
    "page": "options/options.html",
    "open_in_tab": true
  }
}