Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Copy Relative Link",
"version": "2.0.1",
"description": "Copy links, selections, or page URLs as relative paths. Right-click, click toolbar, or use shortcuts for cleaner internal links.",
"permissions": [
"contextMenus",
"scripting",
"clipboardWrite",
"activeTab"
],
"action": {
"default_icon": "icon.png",
"default_title": "Copy Current Page Relative URL"
},
"background": {
"service_worker": "background.js"
},
"commands": {
"copy-relative-link": {
"suggested_key": {
"default": "Alt+Shift+L",
"mac": "Command+Shift+L"
},
"description": "Copy relative link of selected link"
},
"copy-selection-relative": {
"suggested_key": {
"default": "Alt+Shift+S",
"mac": "Command+Shift+S"
},
"description": "Copy selection with local links & img paths made relative"
},
"copy-page-relative": {
"suggested_key": {
"default": "Alt+Shift+U",
"mac": "Command+Shift+U"
},
"description": "Copy current page relative URL"
}
},
"icons": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
}
}