Bookmark Checker
Tells you if you have a link bookmarked
¿Qué es Bookmark Checker?
Bookmark Checker es una extensión de Chrome desarrollada por KnowhereStudios, y su función principal es "Tells you if you have a link bookmarked".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Bookmark Checker
Descarga archivos de extensión Bookmark Checker en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Bookmark Checker |
ID | facjaacomlejpkcfkplhmpkolgnonidh |
URL Oficial | https://chromewebstore.google.com/detail/bookmark-checker/facjaacomlejpkcfkplhmpkolgnonidh |
Descripción | Tells you if you have a link bookmarked |
Tamaño del Archivo | 103 KB |
Cantidad de Instalaciones | 28 |
Versión Actual | 1.0.1 |
Última Actualización | 2020-07-22 |
Fecha de Publicación | 2020-07-07 |
Desarrollador | KnowhereStudios |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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 } |