Tiny Bookmarks
A popup that will display all your bookmarks (and let you filter them) so you can get rid of the top bar.
¿Qué es Tiny Bookmarks?
Tiny Bookmarks es una extensión de Chrome desarrollada por schouffy, y su función principal es "A popup that will display all your bookmarks (and let you filter them) so you can get rid of the top bar.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Tiny Bookmarks
Descarga archivos de extensión Tiny Bookmarks 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
Displays all your bookmarks in a treeview. Lets you hide the bookmarks bar so you have more vertical screen space for the websites. Features : - Search - Remove Icon by https://www.iconfinder.com/SPETS Source code https://github.com/schouffy/bookmarks-chrome-extension
Información Básica de la Extensión
Nombre | Tiny Bookmarks |
ID | iegcdellenlkefldcoligpmfnnejcekj |
URL Oficial | https://chromewebstore.google.com/detail/tiny-bookmarks/iegcdellenlkefldcoligpmfnnejcekj |
Descripción | A popup that will display all your bookmarks (and let you filter them) so you can get rid of the top bar. |
Tamaño del Archivo | 191 KB |
Cantidad de Instalaciones | 39 |
Versión Actual | 0.3 |
Última Actualización | 2020-04-07 |
Fecha de Publicación | 2020-04-07 |
Calificación | 3.00/5 Total de 2 Calificaciones |
Desarrollador | schouffy |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tiny Bookmarks", "version": "0.3", "description": "A popup that will display all your bookmarks (and let you filter them) so you can get rid of the top bar.", "permissions": [ "bookmarks", "tabs", "chrome:\/\/favicon\/" ], "browser_action": { "default_title": "Tiny Bookmarks", "default_popup": "index.html", "default_icon": { "16": "star_16.png", "32": "star_32.png", "48": "star_48.png", "128": "star_128.png" } }, "icons": { "16": "star_16.png", "32": "star_32.png", "48": "star_48.png", "128": "star_128.png" }, "commands": { "_execute_browser_action": { "suggested_key": { "windows": "Ctrl+Comma", "mac": "Command+Comma", "chromeos": "Ctrl+Comma", "linux": "Ctrl+Comma" } } }, "manifest_version": 2, "content_security_policy": "script-src 'self' 'sha256-GgRxrVOKNdB4LrRsVPDSbzvfdV4UqglmviH9GoBJ5jk='; object-src 'self'" } |