Alternate Navigation Buttons

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

Vad är Alternate Navigation Buttons?

Alternate Navigation Buttons är en Chrome-tillägg utvecklad av scott.c.l.carpenter, och dess huvudfunktion är "This extension places a back and forward and goto top button on the page near the bottom of the window".

Tilläggsskärmbilder

screenshot

Ladda ner Alternate Navigation Buttons-förlängningens CRX-fil

Ladda ner Alternate Navigation Buttons-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Alternate Navigation Buttons Alternate Navigation Buttons
ID biojkleepjmhindklmdcomngjkcngjmb
Officiell webbadress https://chromewebstore.google.com/detail/alternate-navigation-butt/biojkleepjmhindklmdcomngjkcngjmb
Beskrivning This extension places a back and forward and goto top button on the page near the bottom of the window
Filstorlek 90.63 KB
Antal Installationer 226
Aktuell Version 1.1
Senast Uppdaterad 2016-09-01
Publiceringsdatum 2016-09-01
Betyg 4.80/5 Totalt 5 Betyg
Utvecklare scott.c.l.carpenter
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
        }
    ]
}