YouTubePlayer

Control YouTube videos across all tabs and windows from extension bar

Cos'è YouTubePlayer?

YouTubePlayer è un'estensione di Chrome sviluppata da Akshaya Kumar, e la sua funzione principale è "Control YouTube videos across all tabs and windows from extension bar".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione YouTubePlayer

Scarica i file di estensione YouTubePlayer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome YouTubePlayer YouTubePlayer
ID djfdkfcebbbehfmibkkhneofknamohoi
URL Ufficiale https://chromewebstore.google.com/detail/youtubeplayer/djfdkfcebbbehfmibkkhneofknamohoi
Descrizione Control YouTube videos across all tabs and windows from extension bar
Dimensione del File 100 KB
Conteggio Installazioni 31
Versione Corrente 1.0.0
Ultimo Aggiornamento 2019-08-04
Data di Pubblicazione 2019-08-03
Sviluppatore Akshaya Kumar
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}