mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-16 06:18:35 +02:00
20 lines
537 B
JSON
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"
|
|
]
|
|
}
|