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" } } |