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
扩展基本信息
名称 | |
ID | hnigeamcjfgobhbiommihjdnbdcldoph |
官方URL | 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" } } |