Files
webextensions-examples/context-menu-copy-link-with-types/manifest.json
Rob Wu 277ac935fa Add example with advanced clipboard manipulation (#207)
(tested with Firefox 52 and 54)
2017-04-24 14:09:19 -07:00

20 lines
537 B
JSON

{
"manifest_version": 2,
"name": "Context menu: Copy link with types",
"description": "Add a context menu option to links to copy the link to the clipboard, as plain text and as a link in rich HTML.",
"version": "1.0",
"homepage_url": "https://github.com/mdn/webextensions-examples/tree/master/context-menu-copy-link-with-types",
"background": {
"scripts": [
"background.js"
]
},
"permissions": [
"activeTab",
"contextMenus",
"clipboardWrite"
]
}