Scroll Pin
Manually record a vertical position on page to return to later.
Scroll Pin là gì?
Scroll Pin là một tiện ích mở rộng Chrome được phát triển bởi Christopher Aguilera, và tính năng chính của nó là "Manually record a vertical position on page to return to later.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Scroll Pin
Tải xuống các tệp mở rộng Scroll Pin 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
Scroll Pin allows you to pin your current scroll position and return to that position later. Good for long reads, documentation and Wikipedia articles.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Scroll Pin |
ID | dadcpolkdngceejebbanbobliemgdhce |
URL Chính Thức | https://chromewebstore.google.com/detail/scroll-pin/dadcpolkdngceejebbanbobliemgdhce |
Mô tả | Manually record a vertical position on page to return to later. |
Kích Thước Tệp | 1.4 MB |
Số Lần Cài Đặt | 33 |
Phiên Bản Hiện Tại | 1.1 |
Cập Nhật Lần Cuối | 2019-05-25 |
Ngày Phát Hành | 2019-05-25 |
Nhà Phát Triển | Christopher Aguilera |
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": "Scroll Pin", "version": "1.1", "description": "Manually record a vertical position on page to return to later.", "manifest_version": 2, "permissions": [ "activeTab", "declarativeContent", "storage" ], "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "browser_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/flag_16.png", "32": "images\/flag_32.png", "48": "images\/flag_48.png", "128": "images\/flag_128.png" } }, "commands": { "save_yPos": { "suggested_key": { "default": "Ctrl+Shift+P", "mac": "Ctrl+Shift+P" }, "description": "Save current yPos in storage" }, "return_yPos": { "suggested_key": { "default": "Ctrl+Shift+D", "mac": "Ctrl+Shift+D" }, "description": "Return to yPos stored in storage" }, "test_tab": { "suggested_key": { "default": "Ctrl+Shift+T", "mac": "MacCtrl+Shift+T" }, "description": "Testing tabs" }, "_execute_browser_action": { "suggested_key": { "default": "Ctrl+Shift+P", "mac": "MacCtrl+Shift+P" }, "description": "Opens popup.html" } } } |