HTML Decodifier
Decode HTML entities by pressing CMD+U
O que é HTML Decodifier?
HTML Decodifier é uma extensão do Chrome desenvolvida por http://mraffaele.com, e sua principal característica é "Decode HTML entities by pressing CMD+U".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão HTML Decodifier
Baixe arquivos de extensão HTML Decodifier 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
Enables HTML decoding of any selected text in a textarea or a text input field. Just select the text you wish to replace and hit CMD + U. For example: <div>Hello, world!</div> Would become:Hello, world!
Informações Básicas da Extensão
Nome | |
ID | mbfgilcffilpfagibjbpjidjgbknnocd |
URL Oficial | https://chrome.google.com/webstore/detail/html-decodifier/mbfgilcffilpfagibjbpjidjgbknnocd |
Descrição | Decode HTML entities by pressing CMD+U |
Tamanho do Arquivo | 50.21 KB |
Contagem de Instalações | 30 |
Versão Atual | 0.0.3 |
Última Atualização | 2014-05-05 |
Data de Publicação | 2014-05-05 |
Desenvolvedor | http://mraffaele.com |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "HTML Decodifier", "version": "0.0.3", "manifest_version": 2, "description": "Decode HTML entities by pressing CMD+U", "homepage_url": "http:\/\/www.mraffaele.com", "icons": { "16": "icons\/16.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "browser_action": { "default_icon": { "19": "icons\/16.png", "38": "icons\/38.png" }, "default_title": "HTML Decodifier", "default_popup": "popup.html" }, "default_locale": "en", "background": { "scripts": [ "js\/background.min.js" ] }, "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "tabs" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/jquery-1.10.2.min.js", "js\/inject.min.js" ], "all_frames": true } ] } |