YouTube Everywhere

Lets YouTube videos play on any page with a YouTube Link

Co je YouTube Everywhere?

YouTube Everywhere je rozšíření Chrome vyvinuté Jared Frank, a jeho hlavní funkcí je „Lets YouTube videos play on any page with a YouTube Link“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření YouTube Everywhere

Stáhněte si soubory rozšíření YouTube Everywhere ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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!                    

Základní Informace o Rozšíření

Název YouTube Everywhere YouTube Everywhere
ID aabngppaojjlinklfhfgdlofeddimohg
Oficiální URL https://chrome.google.com/webstore/detail/youtube-everywhere/aabngppaojjlinklfhfgdlofeddimohg
Popis Lets YouTube videos play on any page with a YouTube Link
Velikost souboru 104 KB
Počet instalací 1,000
Aktuální Verze 1.3.3
Poslední Aktualizace 2015-08-12
Datum Vydání 2015-08-12
Hodnocení 3.93/5 Celkem 30 Hodnocení
Vývojář Jared Frank
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
            ]
        }
    ]
}