Bookmark Checker
Tells you if you have a link bookmarked
Bookmark Checker là gì?
Bookmark Checker là một tiện ích mở rộng Chrome được phát triển bởi KnowhereStudios, và tính năng chính của nó là "Tells you if you have a link bookmarked".
Ả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 Checker
Tải xuống các tệp mở rộng Bookmark Checker 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 extension allows you to see if a link your cursor is on is bookmarked or not. Instructions: Install the Bookmark Checker extension. Hover over any link on page. If the link is bookmarked an icon will appear next to it.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Bookmark Checker |
ID | facjaacomlejpkcfkplhmpkolgnonidh |
URL Chính Thức | https://chromewebstore.google.com/detail/bookmark-checker/facjaacomlejpkcfkplhmpkolgnonidh |
Mô tả | Tells you if you have a link bookmarked |
Kích Thước Tệp | 103 KB |
Số Lần Cài Đặt | 28 |
Phiên Bản Hiện Tại | 1.0.1 |
Cập Nhật Lần Cuối | 2020-07-22 |
Ngày Phát Hành | 2020-07-07 |
Nhà Phát Triển | KnowhereStudios |
[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": "Bookmark Checker", "version": "1.0.1", "description": "Tells you if you have a link bookmarked", "permissions": [ "declarativeContent", "activeTab", "bookmarks" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "page_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/get_started16.png", "32": "images\/get_started32.png", "48": "images\/get_started48.png", "128": "images\/get_started128.png" } }, "icons": { "16": "images\/get_started16.png", "32": "images\/get_started32.png", "48": "images\/get_started48.png", "128": "images\/get_started128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "jquery.js", "content_script.js" ] } ], "manifest_version": 2 } |