Up Button

Like a back button, but for places you pause vertically on a page!

什麼是Up Button?

Up Button是由Will開發的Chrome擴展程式,該擴展的主要功能是“Like a back button, but for places you pause vertically on a page!”。

下載Up Button擴展crx文件

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

擴展使用說明

                        This plugin will mark when you pause on a section of a page, allowing you to navigate vertically.

I wrote this because I spend so much time reading documentation, and need to reference several places in the same doc - so it makes sense to be able to jump to places that you were reading previously!

Works great for:
* research
* documentation
* long pages, lost places

Want to contribute / report bug / request feature? Project is on GitHub at: https://github.com/fowlerwill/UpButton                    

擴展基本資訊

名稱 Up Button Up Button
ID hnigeamcjfgobhbiommihjdnbdcldoph
官方網址 https://chrome.google.com/webstore/detail/up-button/hnigeamcjfgobhbiommihjdnbdcldoph
簡介 Like a back button, but for places you pause vertically on a page!
檔案大小 7.95 KB
安裝次數 24
目前版本 0.0.15
更新時間 2016-01-17
上架時間 2016-01-17
評分 5.00/5 共 3 次評分
開發者 Will
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "0.0.15",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "permissions": [
        "activeTab",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "browser_action": {
        "default_icon": {
            "19": "images\/icon-19.png",
            "38": "images\/icon-38.png"
        },
        "default_title": "updownbuttons"
    }
}