Reddit Nav

Effortlessly scroll through comment threads on Reddit.

Что такое Reddit Nav?

Reddit Nav - это расширение Chrome, разработанное reddit-nav-developers, и его основная функция - "Effortlessly scroll through comment threads on Reddit.".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Reddit Nav

Скачайте файлы расширений Reddit Nav в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        RedditNav is a beautiful way to move between threads, accelerating the way you browse reddit comments.

Features:
 - Navigate between root threads using the intuitive floating navigation button.
 - Alternatively use the `W` and `Q` keyboard shortcuts.
 - Customize the color and placement of the floating action button.
 - Choose from a variety of different scroll speeds.
 - Material Design.

Changelog: https://github.com/justinthec/redditnav/releases

RedditNav is an open source project. Contribute at http://github.com/justinthec/redditnav

Created by Justin Chan and Srdjan Mitrovic                    

Основная информация о расширении

Название Reddit Nav Reddit Nav
ID dpkijnoebmekoiafbkledpjhkpgllkfe
Официальный URL https://chromewebstore.google.com/detail/reddit-nav/dpkijnoebmekoiafbkledpjhkpgllkfe
Описание Effortlessly scroll through comment threads on Reddit.
Размер файла 81.92 KB
Количество установок 199
Текущая Версия 1.1.2
Последнее Обновление 2017-09-19
Дата публикации 2017-09-19
Рейтинг 4.13/5 Всего 15 оценок
Разработчик reddit-nav-developers
Тип оплаты free
URL страницы помощи http://github.com/justinthec/redditnav
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Reddit Nav",
    "description": "Effortlessly scroll through comment threads on Reddit.",
    "version": "1.1.2",
    "browser_action": {
        "default_icon": "popup\/icon128.png",
        "default_popup": "popup\/popup.html",
        "default_title": "RedditNav"
    },
    "icons": {
        "48": "popup\/icon48.png",
        "128": "popup\/icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        "redditnav.html"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.reddit.com\/r\/*\/comments\/*"
            ],
            "css": [
                "redditnav.css"
            ],
            "js": [
                "redditnav.js"
            ]
        }
    ]
}