mirror of
https://github.com/basecamp/omarchy.git
synced 2026-02-17 15:25:37 +00:00
20 lines
487 B
JSON
20 lines
487 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "Copy URL",
|
|
"version": "1.0",
|
|
"description": "Copy current URL to clipboard, this extension is installed by Omarchy",
|
|
"permissions": ["activeTab", "scripting", "notifications"],
|
|
"icons": {
|
|
"16": "icon.png",
|
|
"48": "icon.png",
|
|
"128": "icon.png"
|
|
},
|
|
"commands": {
|
|
"copy-url": {
|
|
"suggested_key": {"default": "Alt+Shift+L"},
|
|
"description": "Copy URL"
|
|
}
|
|
},
|
|
"background": {"service_worker": "background.js"}
|
|
}
|