YouTube.Paginator

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

O que é YouTube.Paginator?

YouTube.Paginator é uma extensão do Chrome desenvolvida por Glukovich, e sua principal característica é "Adds pagebar line on YouTube pages, replaces endless scroll and 'Load more' button.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão YouTube.Paginator

Baixe arquivos de extensão YouTube.Paginator no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

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 года)

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

Informações Básicas da Extensão

Nome YouTube.Paginator YouTube.Paginator
ID dbfaaclbjhfmoakaffpkapnialiammjh
URL Oficial https://chrome.google.com/webstore/detail/youtubepaginator/dbfaaclbjhfmoakaffpkapnialiammjh
Descrição Adds pagebar line on YouTube pages, replaces endless scroll and 'Load more' button.
Tamanho do Arquivo 49.19 KB
Contagem de Instalações 91
Versão Atual 1.0.7
Última Atualização 2018-03-27
Data de Publicação 2018-03-27
Classificação 2.11/5 Total de 9 Avaliações
Desenvolvedor Glukovich
Tipo de Pagamento free
URL da Página de Ajuda http://vk.com/topic-47645171_32448334
Idiomas Suportados 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"
    }
}