Page Turner

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

Cos'è Page Turner?

Page Turner è un'estensione di Chrome sviluppata da https://www.nathankowald.com, e la sua funzione principale è "Navigate paginated webpages using your keyboard's arrow keys. Perfect for search results, image galleries and more.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Page Turner

Scarica i file di estensione Page Turner in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Page Turner Page Turner
ID fpbddhncmmhkaofhcnkjgcdbgcmomebo
URL Ufficiale https://chromewebstore.google.com/detail/page-turner/fpbddhncmmhkaofhcnkjgcdbgcmomebo
Descrizione Navigate paginated webpages using your keyboard's arrow keys. Perfect for search results, image galleries and more.
Dimensione del File 32.27 KB
Conteggio Installazioni 247
Versione Corrente 3.0.2
Ultimo Aggiornamento 2019-05-08
Data di Pubblicazione 2019-05-07
Valutazione 4.14/5 Totale 7 Valutazioni
Sviluppatore https://www.nathankowald.com
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/n8kowald/page-turner
URL della Pagina di Aiuto https://github.com/n8kowald/page-turner/issues
Lingue Supportate 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"
            ]
        }
    ]
}