Decode HTML entities by pressing CMD+U
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
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
}
]
}