HTML Decodifier
Decode HTML entities by pressing CMD+U
HTML Decodifier là gì?
HTML Decodifier là một tiện ích mở rộng Chrome được phát triển bởi http://mraffaele.com, và tính năng chính của nó là "Decode HTML entities by pressing CMD+U".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng HTML Decodifier
Tải xuống các tệp mở rộng HTML Decodifier dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | mbfgilcffilpfagibjbpjidjgbknnocd |
URL Chính Thức | https://chrome.google.com/webstore/detail/html-decodifier/mbfgilcffilpfagibjbpjidjgbknnocd |
Mô tả | Decode HTML entities by pressing CMD+U |
Kích Thước Tệp | 50.21 KB |
Số Lần Cài Đặt | 30 |
Phiên Bản Hiện Tại | 0.0.3 |
Cập Nhật Lần Cuối | 2014-05-05 |
Ngày Phát Hành | 2014-05-05 |
Nhà Phát Triển | http://mraffaele.com |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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 } ] } |