Youtube Likes Sidebar Button

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

What is Youtube Likes Sidebar Button?

Youtube Likes Sidebar Button is a Chrome extension developed by http://systemcluster.me, and its main feature is "Adds a Liked Videos link to the library section of the Youtube sidebar.".

Extension Screenshots

screenshot
screenshot

Download Youtube Likes Sidebar Button Extension CRX File

Download Youtube Likes Sidebar Button extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Adds a Liked Videos link to the library section of the Youtube sidebar.
Integrates seamlessly with the existing sidebar links.

2017-08-30: Updated to support the new Polymer Youtube layout.                    

Extension Basic Information

Name Youtube Likes Sidebar Button Youtube Likes Sidebar Button
ID ahmdidmhhffpkhgfihmcinmlklpeipjm
Official URL https://chrome.google.com/webstore/detail/youtube-likes-sidebar-but/ahmdidmhhffpkhgfihmcinmlklpeipjm
Description Adds a Liked Videos link to the library section of the Youtube sidebar.
File Size 9.89 KB
Installation Count 250
Current Version 0.2.0
Last Updated 2018-07-28
Publish Date 2018-07-28
Rating 4.17/5 Total 6 Ratings
Developer http://systemcluster.me
Email [email protected]
Payment Type free
Supported Languages en
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\/*"
    ]
}