HTML Decodifier
Decode HTML entities by pressing CMD+U
什麼是HTML Decodifier?
HTML Decodifier是由http://mraffaele.com開發的Chrome擴展程式,該擴展的主要功能是“Decode HTML entities by pressing CMD+U”。
擴展截圖
下載HTML Decodifier擴展crx文件
下載HTML Decodifier擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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! 擴展基本資訊
| 名稱 | |
| ID | mbfgilcffilpfagibjbpjidjgbknnocd |
| 官方網址 | https://chrome.google.com/webstore/detail/html-decodifier/mbfgilcffilpfagibjbpjidjgbknnocd |
| 簡介 | Decode HTML entities by pressing CMD+U |
| 檔案大小 | 50.21 KB |
| 安裝次數 | 30 |
| 目前版本 | 0.0.3 |
| 更新時間 | 2014-05-05 |
| 上架時間 | 2014-05-05 |
| 開發者 | http://mraffaele.com |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 支援的語言 | 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
}
]
} | |