HTML Decodifier
Decode HTML entities by pressing CMD+U
Vad är HTML Decodifier?
HTML Decodifier är en Chrome-tillägg utvecklad av http://mraffaele.com, och dess huvudfunktion är "Decode HTML entities by pressing CMD+U".
Tilläggsskärmbilder
Ladda ner HTML Decodifier-förlängningens CRX-fil
Ladda ner HTML Decodifier-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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! Grundläggande Information om Tillägg
| Namn | |
| ID | mbfgilcffilpfagibjbpjidjgbknnocd |
| Officiell webbadress | https://chrome.google.com/webstore/detail/html-decodifier/mbfgilcffilpfagibjbpjidjgbknnocd |
| Beskrivning | Decode HTML entities by pressing CMD+U |
| Filstorlek | 50.21 KB |
| Antal Installationer | 30 |
| Aktuell Version | 0.0.3 |
| Senast Uppdaterad | 2014-05-05 |
| Publiceringsdatum | 2014-05-05 |
| Utvecklare | http://mraffaele.com |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | 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
}
]
} | |