Youtube™ Controller

Control Youtube™ videos from any web page

What is Youtube™ Controller?

Youtube™ Controller is a Chrome extension developed by https://www.maroun-baydoun.com, and its main feature is "Control Youtube™ videos from any web page".

Extension Screenshots

screenshot

Download Youtube™ Controller Extension CRX File

Download Youtube™ Controller 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

                        Play and pause Youtube™ videos from any other web page or even when Chrome is in the background. 

Up to two shortcuts can be set to control video playback. To set shortcuts for this extension, navigate to chrome://extensions/shortcuts                    

Extension Basic Information

Name Youtube™ Controller Youtube™ Controller
ID poalplpedjpddipkghmlhkmgbcnmecop
Official URL https://chromewebstore.google.com/detail/youtube-controller/poalplpedjpddipkghmlhkmgbcnmecop
Description Control Youtube™ videos from any web page
File Size 33.73 KB
Installation Count 2,231
Current Version 2.1.0
Last Updated 2021-07-25
Publish Date 2019-12-12
Rating 4.75/5 Total 51 Ratings
Developer https://www.maroun-baydoun.com
Email [email protected]
Payment Type free
Extension Website https://github.com/maroun-baydoun/youtube-controller-extension
Help Page URL https://github.com/maroun-baydoun/youtube-controller-extension/issues
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "author": "Maroun Baydoun",
    "version": "2.1.0",
    "browser_action": {
        "default_popup": "popup.html"
    },
    "background": {
        "page": "background.html",
        "persistent": false
    },
    "icons": {
        "32": "icon-small.png",
        "64": "icon-medium.png",
        "128": "icon-large.png",
        "256": "icon.png"
    },
    "permissions": [
        "tabs",
        "*:\/\/*.youtube.com\/*"
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "commands": {
        "toggle-video-1": {
            "suggested_key": {
                "default": "Ctrl+Shift+1"
            },
            "description": "Toggle first video",
            "global": true
        },
        "toggle-video-2": {
            "suggested_key": {
                "default": "Ctrl+Shift+2"
            },
            "description": "Toggle second video",
            "global": true
        }
    }
}