Click the icon to unblock pasting (and copying) on websites that have disabled this functionality.
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": "Unblock Paste",
"description": "Unblock pasting.",
"version": "1.2",
"permissions": [
"activeTab",
"scripting"
],
"author": "Naitik Shah <n@daaku.org>",
"homepage_url": "https://github.com/daaku/unblock-paste",
"background": {
"scripts": [
"bg.js"
]
},
"browser_action": {
"default_icon": "icon.svg",
"default_title": "Unblock Paste"
},
"icons": {
"48": "icon.svg",
"128": "icon.svg"
},
"browser_specific_settings": {
"gecko": {
"id": "unblock-paste@daaku.org"
}
}
}