YouTubePlayer

Control YouTube videos across all tabs and windows from extension bar

What is YouTubePlayer?

YouTubePlayer is a Chrome extension developed by Akshaya Kumar, and its main feature is "Control YouTube videos across all tabs and windows from extension bar".

Extension Screenshots

screenshot

Download YouTubePlayer Extension CRX File

Download YouTubePlayer 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

                        This Chrome extension allows to toggle youtube videos that are playing across tabs and windows from the extension. It can skip the ads that are skippable without any time wait.                    

Extension Basic Information

Name YouTubePlayer YouTubePlayer
ID djfdkfcebbbehfmibkkhneofknamohoi
Official URL https://chromewebstore.google.com/detail/youtubeplayer/djfdkfcebbbehfmibkkhneofknamohoi
Description Control YouTube videos across all tabs and windows from extension bar
File Size 100 KB
Installation Count 31
Current Version 1.0.0
Last Updated 2019-08-04
Publish Date 2019-08-03
Developer Akshaya Kumar
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTubePlayer",
    "version": "1.0.0",
    "description": "Control YouTube videos across all tabs and windows from extension bar",
    "icons": {
        "16": "images\/16.png",
        "48": "images\/48.png",
        "128": "images\/128.png"
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "tabs"
    ]
}