HTML Decodifier
Decode HTML entities by pressing CMD+U
Cos'è HTML Decodifier?
HTML Decodifier è un'estensione di Chrome sviluppata da http://mraffaele.com, e la sua funzione principale è "Decode HTML entities by pressing CMD+U".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione HTML Decodifier
Scarica i file di estensione HTML Decodifier in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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!
Informazioni di Base sull'Estensione
Nome | |
ID | mbfgilcffilpfagibjbpjidjgbknnocd |
URL Ufficiale | https://chrome.google.com/webstore/detail/html-decodifier/mbfgilcffilpfagibjbpjidjgbknnocd |
Descrizione | Decode HTML entities by pressing CMD+U |
Dimensione del File | 50.21 KB |
Conteggio Installazioni | 30 |
Versione Corrente | 0.0.3 |
Ultimo Aggiornamento | 2014-05-05 |
Data di Pubblicazione | 2014-05-05 |
Sviluppatore | http://mraffaele.com |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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 } ] } |