HTML Decodifier
Decode HTML entities by pressing CMD+U
Wat is HTML Decodifier?
HTML Decodifier is een Chrome-extensie ontwikkeld door http://mraffaele.com, en de belangrijkste functie is "Decode HTML entities by pressing CMD+U".
Extensie Screenshots
Download het CRX-bestand van de extensie HTML Decodifier
Download HTML Decodifier-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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! Basisinformatie over de Extensie
| Naam | |
| ID | mbfgilcffilpfagibjbpjidjgbknnocd |
| Officiële URL | https://chrome.google.com/webstore/detail/html-decodifier/mbfgilcffilpfagibjbpjidjgbknnocd |
| Beschrijving | Decode HTML entities by pressing CMD+U |
| Bestandsgrootte | 50.21 KB |
| Aantal Installaties | 30 |
| Huidige Versie | 0.0.3 |
| Laatst Bijgewerkt | 2014-05-05 |
| Publicatiedatum | 2014-05-05 |
| Ontwikkelaar | http://mraffaele.com |
| [email protected] | |
| Betalingswijze | free |
| Ondersteunde Talen | 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
}
]
} | |