HTML Decodifier
Decode HTML entities by pressing CMD+U
Was ist HTML Decodifier?
HTML Decodifier ist eine Chrome-Erweiterung, die von http://mraffaele.com entwickelt wurde, und ihr Hauptmerkmal ist "Decode HTML entities by pressing CMD+U".
Erweiterungsscreenshots
HTML Decodifier-Erweiterungs-CRX-Datei herunterladen
Laden Sie HTML Decodifier-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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!
Grundlegende Informationen zur Erweiterung
Name | |
ID | mbfgilcffilpfagibjbpjidjgbknnocd |
Offizielle URL | https://chrome.google.com/webstore/detail/html-decodifier/mbfgilcffilpfagibjbpjidjgbknnocd |
Beschreibung | Decode HTML entities by pressing CMD+U |
Dateigröße | 50.21 KB |
Installationsanzahl | 30 |
Aktuelle Version | 0.0.3 |
Letztes Update | 2014-05-05 |
Veröffentlichungsdatum | 2014-05-05 |
Entwickler | http://mraffaele.com |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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 } ] } |