Alternate Navigation Buttons

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

什麼是Alternate Navigation Buttons?

Alternate Navigation Buttons是由scott.c.l.carpenter開發的Chrome擴展程式,該擴展的主要功能是“This extension places a back and forward and goto top button on the page near the bottom of the window”。

擴展截圖

screenshot

下載Alternate Navigation Buttons擴展crx文件

下載Alternate Navigation Buttons擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Alternate Navigation Buttons Alternate Navigation Buttons
ID biojkleepjmhindklmdcomngjkcngjmb
官方網址 https://chromewebstore.google.com/detail/alternate-navigation-butt/biojkleepjmhindklmdcomngjkcngjmb
簡介 This extension places a back and forward and goto top button on the page near the bottom of the window
檔案大小 90.63 KB
安裝次數 226
目前版本 1.1
更新時間 2016-09-01
上架時間 2016-09-01
評分 4.80/5 共 5 次評分
開發者 scott.c.l.carpenter
電子郵箱 [email protected]
付費類型 free
支援的語言 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"
        }
    ]
}