Alternate Navigation Buttons

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

Was ist Alternate Navigation Buttons?

Alternate Navigation Buttons ist eine Chrome-Erweiterung, die von scott.c.l.carpenter entwickelt wurde, und ihr Hauptmerkmal ist "This extension places a back and forward and goto top button on the page near the bottom of the window".

Erweiterungsscreenshots

screenshot

Alternate Navigation Buttons-Erweiterungs-CRX-Datei herunterladen

Laden Sie Alternate Navigation Buttons-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Alternate Navigation Buttons Alternate Navigation Buttons
ID biojkleepjmhindklmdcomngjkcngjmb
Offizielle URL https://chromewebstore.google.com/detail/alternate-navigation-butt/biojkleepjmhindklmdcomngjkcngjmb
Beschreibung This extension places a back and forward and goto top button on the page near the bottom of the window
Dateigröße 90.63 KB
Installationsanzahl 226
Aktuelle Version 1.1
Letztes Update 2016-09-01
Veröffentlichungsdatum 2016-09-01
Bewertung 4.80/5 Insgesamt 5 Bewertungen
Entwickler scott.c.l.carpenter
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
        }
    ]
}