Previous and Next page keyboard navigation

Allows you to navigate any paged website using the left and right keyboard keys.

Qu'est-ce que Previous and Next page keyboard navigation ?

Previous and Next page keyboard navigation est une extension Chrome développée par manticorp1234, et sa fonction principale est "Allows you to navigate any paged website using the left and right keyboard keys.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Previous and Next page keyboard navigation

Téléchargez les fichiers d'extension Previous and Next page keyboard navigation au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        This extensions basically allows you to navigate any paginated website just using the left and right keys.

Very simple app, to turn off just click the icon in the top right.

Open source, code hosted here:

https://github.com/manticorp/Chrome-Keyboard-Navigation

If you have any suggestions, bugs or you know of sites that don't work, then file a bug report on the github page or contact me through there.                    

Informations de Base sur l'Extension

Nom Previous and Next page keyboard navigation Previous and Next page keyboard navigation
ID bgddcngmfadknajipncoemekkikibfhg
URL Officiel https://chromewebstore.google.com/detail/previous-and-next-page-ke/bgddcngmfadknajipncoemekkikibfhg
Description Allows you to navigate any paged website using the left and right keyboard keys.
Taille du Fichier 44.05 KB
Nombre d'Installations 696
Version Actuelle 0.43
Dernière Mise à Jour 2016-04-10
Date de Publication 2016-04-10
Évaluation 4.12/5 Total 25 Évaluations
Développeur manticorp1234
Type de Paiement free
Site Web de l'Extension https://github.com/manticorp/Chrome-Keyboard-Navigation
URL de la Page d'Aide https://github.com/manticorp/Chrome-Keyboard-Navigation
Langues Prises en Charge en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Previous and Next page keyboard navigation",
    "short_name": "Prev\/Next Keys",
    "description": "Allows you to navigate any paged website using the left and right keyboard keys.",
    "author": "Harry Mustoe-Playfair",
    "version": "0.43",
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Toggle Keyboard Navigation"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "page": "background.html"
    },
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "jquery.js",
                "content_script.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "options_page": "options.html"
}