Up Button
Like a back button, but for places you pause vertically on a page!
Up Button là gì?
Up Button là một tiện ích mở rộng Chrome được phát triển bởi Will, và tính năng chính của nó là "Like a back button, but for places you pause vertically on a page!".
Tải xuống tệp CRX của tiện ích mở rộng Up Button
Tải xuống các tệp mở rộng Up Button dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | hnigeamcjfgobhbiommihjdnbdcldoph |
URL Chính Thức | https://chrome.google.com/webstore/detail/up-button/hnigeamcjfgobhbiommihjdnbdcldoph |
Mô tả | Like a back button, but for places you pause vertically on a page! |
Kích Thước Tệp | 7.95 KB |
Số Lần Cài Đặt | 24 |
Phiên Bản Hiện Tại | 0.0.15 |
Cập Nhật Lần Cuối | 2016-01-17 |
Ngày Phát Hành | 2016-01-17 |
Đánh Giá | 5.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | Will |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |