url-text-fragment/manifest.json

21 lines
348 B
JSON
Raw Normal View History

2024-10-24 12:16:52 +00:00
{
"manifest_version": 2,
"name": "Text Fragment Copier",
"version": "1.0",
"permissions": [
"contextMenus",
"clipboardWrite",
"activeTab"
],
"background": {
"scripts": ["background.js"]
},
"icons": {
"32": "icon.svg",
"48": "icon.svg",
"64": "icon.svg",
"96": "icon.svg",
"128": "icon.svg"
}
}