Youtube Collections Revamp

Youtube Collections Revamp

A revamp of the YouTube Collections feature, in a Chrome Extension.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Youtube Collections Revamp",
  "short_name": "Coll. Revamp",
  "description": "A revamp of the YouTube Collections feature, in a Chrome Extension.",
  "version": "2.8",
  "permissions": [
    "activeTab",
    "storage",
    "tabs",
    "webNavigation",
    "contextMenus",
    "http://localhost:3851/*",
    "https://youtubecollectionsrevampserver.azurewebsites.net/*"
  ],
  "browser_action": {
    "default_icon": "images/icon128.png",
    "default_popup": "popup.html",
    "default_title": "YouTube Collections Revamp"
  },
  "web_accessible_resources": [
    "images/*.png"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "js/constants.js",
        "js/util.js",
        "js/jquery.js",
        "js/jQueryParameters.js",
        "js/jquery.signalR-2.2.0.js",
        "js/contentScript.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "js/constants.js",
      "js/util.js",
      "js/jquery.js",
      "js/jQueryParameters.js",
      "js/jquery.signalR-2.2.0.js",
      "js/background.js"
    ],
    "persistent": false
  },
  "commands": {
    "toggle-feature-foo": {
      "suggested_key": {
        "default": "Ctrl+Shift+Y",
        "mac": "Command+Shift+Y"
      },
      "description": "Toggle feature foo"
    },
    "_execute_browser_action": {
      "suggested_key": {
        "windows": "Ctrl+Shift+Y",
        "mac": "Command+Shift+Y",
        "chromeos": "Ctrl+Shift+U",
        "linux": "Ctrl+Shift+J"
      }
    },
    "_execute_page_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+E",
        "windows": "Alt+Shift+P",
        "mac": "Alt+Shift+P"
      }
    }
  },
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "manifest_version": 2
}