Page Turner

Navigate paginated webpages using your keyboard's arrow keys. Perfect for search results, image galleries and more.

Что такое Page Turner?

Page Turner - это расширение Chrome, разработанное https://www.nathankowald.com, и его основная функция - "Navigate paginated webpages using your keyboard's arrow keys. Perfect for search results, image galleries and more.".

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

screenshot

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

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

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

                        Page Turner detects back and next links in websites. It allows you to 'turn the page' using your keyboard's left and right arrow keys. Page Turner also prerenders next pages for fast page loads.                    

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

Название Page Turner Page Turner
ID fpbddhncmmhkaofhcnkjgcdbgcmomebo
Официальный URL https://chromewebstore.google.com/detail/page-turner/fpbddhncmmhkaofhcnkjgcdbgcmomebo
Описание Navigate paginated webpages using your keyboard's arrow keys. Perfect for search results, image galleries and more.
Размер файла 32.27 KB
Количество установок 247
Текущая Версия 3.0.2
Последнее Обновление 2019-05-08
Дата публикации 2019-05-07
Рейтинг 4.14/5 Всего 7 оценок
Разработчик https://www.nathankowald.com
Тип оплаты free
Официальный сайт расширения https://github.com/n8kowald/page-turner
URL страницы помощи https://github.com/n8kowald/page-turner/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Page Turner",
    "version": "3.0.2",
    "manifest_version": 2,
    "description": "Navigate paginated webpages using your keyboard's arrow keys. Perfect for search results, image galleries and more.",
    "browser_action": {
        "default_icon": "icons\/inactive.png",
        "default_popup": "popup\/popup.html"
    },
    "permissions": [
        "tabs",
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "web_accessible_resources": [
        "icons\/arrow-next.png",
        "icons\/arrow-back.png"
    ],
    "icons": {
        "16": "icons\/inactive.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "page-turner.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ]
}