Alternate Navigation Buttons

This extension places a back and forward and goto top button on the page near the bottom of the window

Qu'est-ce que Alternate Navigation Buttons ?

Alternate Navigation Buttons est une extension Chrome développée par scott.c.l.carpenter, et sa fonction principale est "This extension places a back and forward and goto top button on the page near the bottom of the window".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Alternate Navigation Buttons

Téléchargez les fichiers d'extension Alternate Navigation Buttons 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 simple extension simply adds 3 fixed navigation buttons (back and forward and to top) to the bottom left corner of the browser window. 

Useful if you find yourself using a tablet PC in a non-tablet mode or like myself browsing with your mouse near the bottom of the screen.                    

Informations de Base sur l'Extension

Nom Alternate Navigation Buttons Alternate Navigation Buttons
ID biojkleepjmhindklmdcomngjkcngjmb
URL Officiel https://chromewebstore.google.com/detail/alternate-navigation-butt/biojkleepjmhindklmdcomngjkcngjmb
Description This extension places a back and forward and goto top button on the page near the bottom of the window
Taille du Fichier 90.63 KB
Nombre d'Installations 226
Version Actuelle 1.1
Dernière Mise à Jour 2016-09-01
Date de Publication 2016-09-01
Évaluation 4.80/5 Total 5 Évaluations
Développeur scott.c.l.carpenter
Email [email protected]
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Alternate Navigation Buttons",
    "description": "This extension places a back and forward and goto top button on the page near the bottom of the window",
    "version": "1.1",
    "web_accessible_resources": [
        "back.png",
        "forward.png",
        "top.png"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.js",
                "myscript.js"
            ],
            "run_at": "document_start"
        }
    ]
}