YT Auto Load More

Automatically loads more items (comments, videos, playlists, etc.) on YouTube(tm)'s pages.

Co to jest YT Auto Load More?

YT Auto Load More to rozszerzenie Chrome opracowane przez Ricardo Antunes, a jego główną funkcją jest „Automatically loads more items (comments, videos, playlists, etc.) on YouTube(tm)'s pages.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia YT Auto Load More

Pobierz pliki rozszerzeń YT Auto Load 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

                        A chrome extension to automatically load items on Youtube(tm)'s pages (videos, playlist videos, comments, etc).

Click the icon at the upper right to start/pause loading the items. 

Source code is available at https://github.com/rantunes1/yt-load-more-items                    

Podstawowe informacje o rozszerzeniu

Nazwa YT Auto Load More YT Auto Load More
ID illnlopnlfnmdbanolhbjihgeliaakdl
Oficjalny URL https://chromewebstore.google.com/detail/yt-auto-load-more/illnlopnlfnmdbanolhbjihgeliaakdl
Opis Automatically loads more items (comments, videos, playlists, etc.) on YouTube(tm)'s pages.
Rozmiar pliku 22.16 KB
Liczba instalacji 379
Aktualna Wersja 1.1.1
Ostatnia Aktualizacja 2018-07-10
Data Publikacji 2018-07-10
Ocena 3.44/5 Łącznie 18 Oceny
Deweloper Ricardo Antunes
E-mail [email protected]
Typ Płatności free
Adres URL Strony Pomocy https://github.com/rantunes1/yt-load-more-items/issues
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extension_name__",
    "short_name": "__MSG_extension_name__",
    "description": "__MSG_extension_description__",
    "version": "1.1.1",
    "author": "Ricardo Antunes",
    "default_locale": "en",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "exclude_matches": [
                "*:\/\/*.youtube.com\/embed\/*"
            ],
            "js": [
                "scripts\/yt-load-more-items.js"
            ],
            "css": [
                "styles\/yt-load-more-items.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "images\/*.*"
    ]
}