Tagger
Tag web pages so that you can easily find it later.
O que é Tagger?
Tagger é uma extensão do Chrome desenvolvida por jaewoong.info, e sua principal característica é "Tag web pages so that you can easily find it later.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Tagger
Baixe arquivos de extensão Tagger 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 chrome extension to enable OS X style tagging on web pages. Tagged pages are highlighted on search results pages. By default, highlighting works on Google, Duckduckgo, Yahoo and Bing. You can change settings on options page. Feel free to contribute or report issues: https://github.com/jaewoongh/tagger-chrome
Informações Básicas da Extensão
Nome | Tagger |
ID | hedcldmdcdgjaccenecldaklgfkmceaf |
URL Oficial | https://chromewebstore.google.com/detail/tagger/hedcldmdcdgjaccenecldaklgfkmceaf |
Descrição | Tag web pages so that you can easily find it later. |
Tamanho do Arquivo | 34.38 KB |
Contagem de Instalações | 18 |
Versão Atual | 1.0 |
Última Atualização | 2014-11-19 |
Data de Publicação | 2014-11-19 |
Classificação | 3.00/5 Total de 1 Avaliações |
Desenvolvedor | jaewoong.info |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/jaewoongh/tagger-chrome |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Tagger", "version": "1.0", "description": "Tag web pages so that you can easily find it later.", "author": "Jaewoong Hwang", "permissions": [ "webNavigation", "tabs", "storage", "contextMenus", "http:\/\/*\/*", "https:\/\/*\/*" ], "icons": { "16": "icon-bitty.png", "48": "icon-small.png", "128": "icon-large.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "tagger.js" ] } ], "page_action": { "default_icon": { "19": "pageicon.png", "38": "pageicon2x.png" }, "default_title": "Tag", "default_popup": "popup.html" }, "options_page": "options.html" } |