Bookmark Checker
Tells you if you have a link bookmarked
Qu'est-ce que Bookmark Checker ?
Bookmark Checker est une extension Chrome développée par KnowhereStudios, et sa fonction principale est "Tells you if you have a link bookmarked".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Bookmark Checker
Téléchargez les fichiers d'extension Bookmark Checker au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Bookmark Checker |
ID | facjaacomlejpkcfkplhmpkolgnonidh |
URL Officiel | https://chromewebstore.google.com/detail/bookmark-checker/facjaacomlejpkcfkplhmpkolgnonidh |
Description | Tells you if you have a link bookmarked |
Taille du Fichier | 103 KB |
Nombre d'Installations | 28 |
Version Actuelle | 1.0.1 |
Dernière Mise à Jour | 2020-07-22 |
Date de Publication | 2020-07-07 |
Développeur | KnowhereStudios |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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 } |