Bookmark Walker
Hotkey-based browsing of bookmarks, in forward or reverse order
Bookmark Walker là gì?
Bookmark Walker là một tiện ích mở rộng Chrome được phát triển bởi Tyler Durrett, và tính năng chính của nó là "Hotkey-based browsing of bookmarks, in forward or reverse order".
Ả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 Bookmark Walker
Tải xuống các tệp mở rộng Bookmark Walker 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
What ---- A simple Google Chrome extension which creates shortcut keys for stepping through bookmarks from the folder of your choice in forward or reverse order. Why --- I save a lot of bookmarks while browsing the web, but I find it overly tedious to click through my various bookmark folders to revisit my saved sites. I wanted the ability to pick a particular folder, and then press a hotkey to step through each bookmark without hassle. How --- - Click the extension's icon to choose a bookmarks folder to step through. - Press Alt+M to browse forward through the bookmarks in your chosen folder. Successive presses will step through each bookmark in the folder, displaying them in the current tab. - Alt+N cycles through the bookmarks in the opposite order.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Bookmark Walker |
ID | jolkcmlidbppgpplmcmpkdhlefemacfd |
URL Chính Thức | https://chromewebstore.google.com/detail/bookmark-walker/jolkcmlidbppgpplmcmpkdhlefemacfd |
Mô tả | Hotkey-based browsing of bookmarks, in forward or reverse order |
Kích Thước Tệp | 153 KB |
Số Lần Cài Đặt | 121 |
Phiên Bản Hiện Tại | 1.4.3 |
Cập Nhật Lần Cuối | 2013-10-12 |
Ngày Phát Hành | 2013-10-12 |
Đánh Giá | 4.43/5 Tổng số 7 Đánh Giá |
Nhà Phát Triển | Tyler Durrett |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/tylerdurrett/chrome-bookmark-walker |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Bookmark Walker", "short_name": "BookmarkWalk", "description": "Hotkey-based browsing of bookmarks, in forward or reverse order", "version": "1.4.3", "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "manifest_version": 2, "minimum_chrome_version": "25", "permissions": [ "tabs", "bookmarks" ], "browser_action": { "default_icon": { "19": "images\/icon19.png", "38": "images\/icon38.png" }, "default_title": "Bookmark Walker", "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "commands": { "load-previous-bookmark": { "suggested_key": { "default": "Alt+N" }, "description": "Load the previous bookmark in the current folder" }, "load-next-bookmark": { "suggested_key": { "default": "Alt+M" }, "description": "Load the next bookmark in the current folder" } } } |