Inspect and view changes in Clipboard Inserter Fork source codes across current and past versions
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": "Clipboard Inserter",
"version": "0.3.3",
"description": "A fork of a simple addon that inserts clipboard contents into the page. Uses icon made by Google from www.flaticon.com licensed by CC 3.0 BY",
"icons": {},
"applications": {
"gecko": {
"id": "@clipboard-inserter-fork"
}
},
"permissions": [
"activeTab",
"clipboardRead",
"storage",
"file://*/*"
],
"browser_action": {
"browser_style": true,
"default_icon": {
"16": "icon/icon16.png",
"32": "icon/icon32.png",
"64": "icon/icon64.png"
},
"default_title": "Toggle clipboard inserter"
},
"background": {
"page": "bg/index.html"
},
"options_ui": {
"page": "options.html"
}
}