HTML Decodifier
Decode HTML entities by pressing CMD+U
Apa itu HTML Decodifier?
HTML Decodifier adalah ekstensi Chrome yang dikembangkan oleh http://mraffaele.com, dan fitur utamanya adalah "Decode HTML entities by pressing CMD+U".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi HTML Decodifier
Unduh file ekstensi HTML Decodifier dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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!
Informasi Dasar Ekstensi
Nama | |
ID | mbfgilcffilpfagibjbpjidjgbknnocd |
URL Resmi | https://chrome.google.com/webstore/detail/html-decodifier/mbfgilcffilpfagibjbpjidjgbknnocd |
Deskripsi | Decode HTML entities by pressing CMD+U |
Ukuran File | 50.21 KB |
Jumlah Instalasi | 30 |
Versi Saat Ini | 0.0.3 |
Terakhir Diperbarui | 2014-05-05 |
Tanggal Publikasi | 2014-05-05 |
Pengembang | http://mraffaele.com |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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 } ] } |