Open clipboard text as an HTML file.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 2,
"name": "HTML from Clipboard",
"version": "1.0",
"description": "Open clipboard text as an HTML file",
"permissions": [
"clipboardRead",
"activeTab"
],
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"48": "icon.png"
}
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"icons": {
"48": "icon.png"
},
"browser_specific_settings": {
"gecko": {
"id": "{ec76b683-7ff1-4329-a71e-483fb1310fda}"
}
}
}