Page Turner

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

Co to jest Page Turner?

Page Turner to rozszerzenie Chrome opracowane przez https://www.nathankowald.com, a jego główną funkcją jest „Navigate paginated webpages using your keyboard's arrow keys. Perfect for search results, image galleries and more.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Page Turner

Pobierz pliki rozszerzeń Page Turner 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

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Page Turner Page Turner
ID fpbddhncmmhkaofhcnkjgcdbgcmomebo
Oficjalny URL https://chromewebstore.google.com/detail/page-turner/fpbddhncmmhkaofhcnkjgcdbgcmomebo
Opis Navigate paginated webpages using your keyboard's arrow keys. Perfect for search results, image galleries and more.
Rozmiar pliku 32.27 KB
Liczba instalacji 247
Aktualna Wersja 3.0.2
Ostatnia Aktualizacja 2019-05-08
Data Publikacji 2019-05-07
Ocena 4.14/5 Łącznie 7 Oceny
Deweloper https://www.nathankowald.com
Typ Płatności free
Strona Rozszerzenia https://github.com/n8kowald/page-turner
Adres URL Strony Pomocy https://github.com/n8kowald/page-turner/issues
Obsługiwane Języki 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"
            ]
        }
    ]
}