Youtube Likes Sidebar Button

Youtube Likes Sidebar Button

Adds a Liked Videos link to the library section of the Youtube sidebar.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Youtube Likes Sidebar Button",
  "short_name": "Youtube Likes Sidebar Button",
  "description": "Adds a Liked Videos link to the library section of the Youtube sidebar.",
  "version": "0.2.0",
  "author": "Christian Sdunek",
  "icons": {
    "16": "chrome/skin/icon16.png",
    "48": "chrome/skin/icon48.png",
    "96": "chrome/skin/icon96.png",
    "128": "chrome/skin/icon128.png"
  },
  "content_scripts": [
    {
      "js": [
        "inject.js"
      ],
      "matches": [
        "*://*.youtube.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "*://*.youtube.com/*"
  ]
}