YouTube Everywhere

Lets YouTube videos play on any page with a YouTube Link

Co to jest YouTube Everywhere?

YouTube Everywhere to rozszerzenie Chrome opracowane przez Jared Frank, a jego główną funkcją jest „Lets YouTube videos play on any page with a YouTube Link”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia YouTube Everywhere

Pobierz pliki rozszerzeń YouTube Everywhere w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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!                    

Podstawowe informacje o rozszerzeniu

Nazwa YouTube Everywhere YouTube Everywhere
ID aabngppaojjlinklfhfgdlofeddimohg
Oficjalny URL https://chrome.google.com/webstore/detail/youtube-everywhere/aabngppaojjlinklfhfgdlofeddimohg
Opis Lets YouTube videos play on any page with a YouTube Link
Rozmiar pliku 104 KB
Liczba instalacji 1,000
Aktualna Wersja 1.3.3
Ostatnia Aktualizacja 2015-08-12
Data Publikacji 2015-08-12
Ocena 3.93/5 Łącznie 30 Oceny
Deweloper Jared Frank
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
            ]
        }
    ]
}