Autoplay No More

Disable automatic jumps from current to next video on Youtube, TED, Bing and Vimeo.

Co to jest Autoplay No More?

Autoplay No More to rozszerzenie Chrome opracowane przez https://www.kiboke-studio.hr, a jego główną funkcją jest „Disable automatic jumps from current to next video on Youtube, TED, Bing and Vimeo.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Autoplay No More

Pobierz pliki rozszerzeń Autoplay No More 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

                        Disable automatic jumps from current to next video on Youtube, TED, Bing and Vimeo.                    

Podstawowe informacje o rozszerzeniu

Nazwa Autoplay No More Autoplay No More
ID obiogedpmdnfaldjdjmnbpmhjjfnghnj
Oficjalny URL https://chromewebstore.google.com/detail/autoplay-no-more/obiogedpmdnfaldjdjmnbpmhjjfnghnj
Opis Disable automatic jumps from current to next video on Youtube, TED, Bing and Vimeo.
Rozmiar pliku 13.88 KB
Liczba instalacji 1,051
Aktualna Wersja 0.4.2
Ostatnia Aktualizacja 2023-08-21
Data Publikacji 2020-04-16
Ocena 3.00/5 Łącznie 8 Oceny
Deweloper https://www.kiboke-studio.hr
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://www.kiboke-studio.hr/browser-extensions/
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Autoplay No More",
    "description": "Disable automatic jumps from current to next video on Youtube, TED, Bing and Vimeo.",
    "version": "0.4.2",
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "96": "icons\/96.png",
        "128": "icons\/128.png"
    },
    "author": "Daniel Kladnik",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "css": [
                "data\/youtube.css"
            ],
            "js": [
                "data\/youtube.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.vimeo.com\/*"
            ],
            "css": [
                "data\/vimeo.css"
            ],
            "js": [
                "data\/vimeo.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.ted.com\/*"
            ],
            "js": [
                "data\/ted.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.bing.com\/videos\/*"
            ],
            "js": [
                "data\/bing.js"
            ]
        }
    ]
}