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
官方URL 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"
        }
    ]
}