Bookmark Checker
Tells you if you have a link bookmarked
What is Bookmark Checker?
Bookmark Checker is a Chrome extension developed by KnowhereStudios, and its main feature is "Tells you if you have a link bookmarked".
Extension Screenshots
Download Bookmark Checker Extension CRX File
Download Bookmark Checker extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Bookmark Checker |
ID | facjaacomlejpkcfkplhmpkolgnonidh |
Official URL | https://chromewebstore.google.com/detail/bookmark-checker/facjaacomlejpkcfkplhmpkolgnonidh |
Description | Tells you if you have a link bookmarked |
File Size | 103 KB |
Installation Count | 28 |
Current Version | 1.0.1 |
Last Updated | 2020-07-22 |
Publish Date | 2020-07-07 |
Developer | KnowhereStudios |
[email protected] | |
Payment Type | free |
Supported Languages | 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 } |