Research Bookmarks
A clean and organized way to bookmark Google search results.
Research Bookmarks là gì?
Research Bookmarks là một tiện ích mở rộng Chrome được phát triển bởi Jeff Ng, và tính năng chính của nó là "A clean and organized way to bookmark Google search results.".
Ả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 Research Bookmarks
Tải xuống các tệp mở rộng Research Bookmarks 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
Google search is powerful, but it could be frustrating sometimes to manage the useful search results and tabs definitely not a good solution. Introducing Research Bookmarks, a light-weight tool to help you to manage the search results. Simply add the search results to your research bookmarks with one click to build a reading list.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Research Bookmarks |
ID | eabiibeimmkdbjclijmgohlklgkpdjhc |
URL Chính Thức | https://chromewebstore.google.com/detail/research-bookmarks/eabiibeimmkdbjclijmgohlklgkpdjhc |
Mô tả | A clean and organized way to bookmark Google search results. |
Kích Thước Tệp | 55.72 KB |
Số Lần Cài Đặt | 20 |
Phiên Bản Hiện Tại | 0.1 |
Cập Nhật Lần Cuối | 2020-01-23 |
Ngày Phát Hành | 2020-01-23 |
Đánh Giá | 5.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | Jeff Ng |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Research Bookmarks", "description": "A clean and organized way to bookmark Google search results.", "version": "0.1", "manifest_version": 2, "permissions": [ "storage", "activeTab" ], "browser_action": { "default_popup": "popup\/rbpPopup.html", "default_icon": { "16": "images\/rbp_16.png", "32": "images\/rbp_32.png", "48": "images\/rbp_48.png", "128": "images\/rbp_128.png" } }, "icons": { "16": "images\/rbp_16.png", "32": "images\/rbp_32.png", "48": "images\/rbp_48.png", "128": "images\/rbp_128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.google.com\/search*" ], "css": [ "init\/initPage.css" ], "js": [ "init\/initPage.js" ] } ], "commands": { "_execute_browser_action": { "suggested_key": { "default": "Ctrl+B", "mac": "MacCtrl+B" }, "description": "Opens bookmark list" } } } |