YouTube Everywhere

Lets YouTube videos play on any page with a YouTube Link

Cos'è YouTube Everywhere?

YouTube Everywhere è un'estensione di Chrome sviluppata da Jared Frank, e la sua funzione principale è "Lets YouTube videos play on any page with a YouTube Link".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione YouTube Everywhere

Scarica i file di estensione YouTube Everywhere 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

                        YouTube Everywhere adds small YouTube icons next YouTube links on any page. Clicking the icon will expand a small YouTube player to be able to watch the video without having to change pages or open a new tab!                    

Informazioni di Base sull'Estensione

Nome YouTube Everywhere YouTube Everywhere
ID aabngppaojjlinklfhfgdlofeddimohg
URL Ufficiale https://chrome.google.com/webstore/detail/youtube-everywhere/aabngppaojjlinklfhfgdlofeddimohg
Descrizione Lets YouTube videos play on any page with a YouTube Link
Dimensione del File 104 KB
Conteggio Installazioni 1,000
Versione Corrente 1.3.3
Ultimo Aggiornamento 2015-08-12
Data di Pubblicazione 2015-08-12
Valutazione 3.93/5 Totale 30 Valutazioni
Sviluppatore Jared Frank
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Everywhere",
    "description": "Lets YouTube videos play on any page with a YouTube Link",
    "version": "1.3.3",
    "icons": {
        "16": "img\/ytlogo128.png",
        "48": "img\/ytlogo128.png",
        "128": "img\/ytlogo128.png"
    },
    "background": {
        "scripts": [
            "main.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "img\/youtube.png"
    ],
    "permissions": [
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "exclude_matches": [
                "*:\/\/www.youtube.com\/*",
                "*:\/\/www.reddit.com\/",
                "*:\/\/www.reddit.com\/?*"
            ],
            "run_at": "document_end",
            "css": [
                "style.css"
            ],
            "js": [
                "jquery.min.js",
                "main.js"
            ]
        }
    ]
}