YouTube.Paginator

Adds pagebar line on YouTube pages, replaces endless scroll and 'Load more' button.

YouTube.Paginator란 무엇입니까?

YouTube.Paginator은(는) Glukovich에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds pagebar line on YouTube pages, replaces endless scroll and 'Load more' button."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

YouTube.Paginator 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        (перевод на русский ниже)

This extension inserts pages line instead of 'load more' button (instead of infinite/endless  scroll).

This ext for those on YouTube, who tired to load scroll infinitely, who hates endless page with lags, who frustrates when "back" button leads to the beginning of the infinite scroll...

(small update: fixed issue on channel page when extension always load first page)

Features:

* adds paginator line to the top and the bottom of content block;
* works on subscribes page, playlists, watched history, uploaded videos on user's channel;
* pages history included! now you can use back/forward with this ext;
* quick access box to any page number;

known bugs:
- top sort buttons is only at first page...
- yet works only in outdated layout design of YT (before changes in 2017)

Feel free to send me feedback if you found some bug, or have an idea to enhance functionality!

–––––––––––––––––––––––––

Это расширение добавляет строку страниц вместо кнопки "загрузить ещё" (вместо бесконечного скроллинга).

Для тех на ютубе, кто устал от бесконечной загрузки бесконечного скролла, кто ненавидит растянутую в вечность страницу с тормозами, кого бесит, когда оказывается, что кнопка "назад" ведёт в начало долбаного списка с нескончаемым скроллом...

(мелкое обновление: пофикшена ошибка расширения, когда оно грузило только первую страницу на канале автора)

Чё умеет:

* добавляет строку со страницами сверху и снизу блока с содержанием;
* работает на страницах подписок, плейлистов, истории просмотров, списка видео на каналах пользователей;
* есть история хождения по страницам! можно использовать назад/вперёд с этим расширением;
* быстрый доступ к нужной страницы через формочку;

известные баги:
- верхние спец кнопки сортировки видео находятся только на первой странице...
- пока работает только в старом дизайне YT (до 2017 года)

Не стесняйтесь оставлять отзыв, если нашли баг или есть идеи по улучшению функциональности!                    

확장 프로그램 기본 정보

이름 YouTube.Paginator YouTube.Paginator
ID dbfaaclbjhfmoakaffpkapnialiammjh
공식 URL https://chrome.google.com/webstore/detail/youtubepaginator/dbfaaclbjhfmoakaffpkapnialiammjh
설명 Adds pagebar line on YouTube pages, replaces endless scroll and 'Load more' button.
파일 크기 49.19 KB
설치 횟수 91
현재 버전 1.0.7
최근 업데이트 2018-03-27
출시 날짜 2018-03-27
평점 2.11/5 총 9 개의 평점
개발자 Glukovich
결제 유형 free
도움말 페이지 URL http://vk.com/topic-47645171_32448334
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube.Paginator",
    "version": "1.0.7",
    "description": "Adds pagebar line on YouTube pages, replaces endless scroll and 'Load more' button.",
    "short_name": "YouTube.Paginator",
    "icons": {
        "16": "YT16.png",
        "32": "YT32.png",
        "48": "YT48.png",
        "96": "YT96.png",
        "128": "YT128.png"
    },
    "web_accessible_resources": [],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "jquery-2.1.1.min.js",
                "content.js"
            ]
        }
    ],
    "background": [],
    "permissions": [
        "*:\/\/*.youtube.com\/*"
    ],
    "browser_action": {
        "default_title": "YouTube.Paginator",
        "default_icon": "YT32.png"
    }
}