HTML Decodifier
Decode HTML entities by pressing CMD+U
What is HTML Decodifier?
HTML Decodifier is a Chrome extension developed by http://mraffaele.com, and its main feature is "Decode HTML entities by pressing CMD+U".
Extension Screenshots
Download HTML Decodifier Extension CRX File
Download HTML Decodifier extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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!
Extension Basic Information
Name | |
ID | mbfgilcffilpfagibjbpjidjgbknnocd |
Official URL | https://chrome.google.com/webstore/detail/html-decodifier/mbfgilcffilpfagibjbpjidjgbknnocd |
Description | Decode HTML entities by pressing CMD+U |
File Size | 50.21 KB |
Installation Count | 30 |
Current Version | 0.0.3 |
Last Updated | 2014-05-05 |
Publish Date | 2014-05-05 |
Developer | http://mraffaele.com |
[email protected] | |
Payment Type | free |
Supported Languages | 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 } ] } |