No Scroll Tube

This lightweight extension adds the ability to pin YouTube videos and prevent scrolling outside of page view

Co to jest No Scroll Tube?

No Scroll Tube to rozszerzenie Chrome opracowane przez Hyper Expert, a jego główną funkcją jest „This lightweight extension adds the ability to pin YouTube videos and prevent scrolling outside of page view”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia No Scroll Tube

Pobierz pliki rozszerzeń No Scroll Tube 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

                                            

Podstawowe informacje o rozszerzeniu

Nazwa No Scroll Tube No Scroll Tube
ID ejkedopdhafifdnmehiajbocpmlneico
Oficjalny URL https://chromewebstore.google.com/detail/no-scroll-tube/ejkedopdhafifdnmehiajbocpmlneico
Opis This lightweight extension adds the ability to pin YouTube videos and prevent scrolling outside of page view
Rozmiar pliku 16.07 KB
Liczba instalacji 63
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2016-07-29
Data Publikacji 2016-07-24
Ocena 4.00/5 Łącznie 4 Oceny
Deweloper Hyper Expert
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia http://noscrolltube.com
Adres URL Strony Pomocy http://noscrolltube.com
Adres URL Strony Polityki Prywatności http://hyperexpert.com
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "No Scroll Tube",
    "description": "This lightweight extension adds the ability to pin YouTube videos and prevent scrolling outside of page view",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "css": [
                "new.css"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_start"
        }
    ],
    "version": "1.0",
    "browser_action": {
        "default_icon": "images\/icon64.png"
    },
    "permissions": [
        "activeTab"
    ],
    "web_accessible_resources": [
        "images\/pinPlayer.png"
    ]
}