Tagged Bookmarks
A browser action with a popup dump of all bookmarks, including search, add, edit and delete.
O que é Tagged Bookmarks?
Tagged Bookmarks é uma extensão do Chrome desenvolvida por paulshir, e sua principal característica é "A browser action with a popup dump of all bookmarks, including search, add, edit and delete.".
Baixar o arquivo CRX da Extensão Tagged Bookmarks
Baixe arquivos de extensão Tagged Bookmarks no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
A simple extension that enables you to store and search for tags in your bookmarks. It works by adding extra metadata to your existing bookmarks so your tags are synced with your chrome bookmarks.
Informações Básicas da Extensão
Nome | Tagged Bookmarks |
ID | ifmjnildbmfokeoakbbhjebmiepcjgfc |
URL Oficial | https://chromewebstore.google.com/detail/tagged-bookmarks/ifmjnildbmfokeoakbbhjebmiepcjgfc |
Descrição | A browser action with a popup dump of all bookmarks, including search, add, edit and delete. |
Tamanho do Arquivo | 12.41 KB |
Contagem de Instalações | 10 |
Versão Atual | 0.1 |
Última Atualização | 2014-10-08 |
Data de Publicação | 2014-10-08 |
Classificação | 4.00/5 Total de 1 Avaliações |
Desenvolvedor | paulshir |
Tipo de Pagamento | free |
Idiomas Suportados | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tagged Bookmarks", "version": "0.1", "description": "A browser action with a popup dump of all bookmarks, including search, add, edit and delete.", "permissions": [ "tabs", "bookmarks" ], "omnibox": { "keyword": "tags" }, "icons": { "16": "tag_16.png", "48": "tag_48.png", "128": "tag_128.png" }, "browser_action": { "default_title": "Tagged Bookmarks", "default_icon": "tag_16.png", "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ] }, "manifest_version": 2, "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'" } |