Bookmark Checker
Tells you if you have a link bookmarked
什麼是Bookmark Checker?
Bookmark Checker是由KnowhereStudios開發的Chrome擴展程式,該擴展的主要功能是“Tells you if you have a link bookmarked”。
擴展截圖
下載Bookmark Checker擴展crx文件
下載Bookmark Checker擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | Bookmark Checker |
ID | facjaacomlejpkcfkplhmpkolgnonidh |
官方網址 | https://chromewebstore.google.com/detail/bookmark-checker/facjaacomlejpkcfkplhmpkolgnonidh |
簡介 | Tells you if you have a link bookmarked |
檔案大小 | 103 KB |
安裝次數 | 28 |
目前版本 | 1.0.1 |
更新時間 | 2020-07-22 |
上架時間 | 2020-07-07 |
開發者 | KnowhereStudios |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | 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 } |