Copy URL+
Copy a short URL, title, and selected text in any format you want.
What is Copy URL+?
Copy URL+ is a Chrome extension developed by Naoto Yokoyama, and its main feature is "Copy a short URL, title, and selected text in any format you want.".
Extension Screenshots
Download Copy URL+ Extension CRX File
Download Copy URL+ extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Key features
- Keyboard shortcuts
- Flexible context menus
- URL shortening
- Notifications
Icons and promotional images are designed by Honeshabri. Extension Basic Information
| Name | |
| ID | capojgaalppngkaagaobmigigcgnidmn |
| Official URL | https://chromewebstore.google.com/detail/copy-url+/capojgaalppngkaagaobmigigcgnidmn |
| Description | Copy a short URL, title, and selected text in any format you want. |
| File Size | 35.59 KB |
| Installation Count | 3,796 |
| Current Version | 1.1.1 |
| Last Updated | 2020-08-06 |
| Publish Date | 2020-08-06 |
| Rating | 3.93/5 Total 45 Ratings |
| Developer | Naoto Yokoyama |
| [email protected] | |
| Payment Type | free |
| Supported Languages | en |
| manifest.json | |
{
"update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Copy URL+",
"version": "1.1.1",
"description": "Copy a short URL, title, and selected text in any format you want.",
"manifest_version": 2,
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"background": {
"page": "background.html",
"persistent": true
},
"options_page": "options.html",
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"scripts\/keyboard.js",
"scripts\/content-script.js"
]
}
],
"permissions": [
"tabs",
"clipboardWrite",
"notifications",
"contextMenus",
"https:\/\/www.googleapis.com\/url\/shortener",
"https:\/\/accounts.google.com\/o\/oauth2\/auth",
"https:\/\/accounts.google.com\/o\/oauth2\/token",
"http:\/\/*\/",
"https:\/\/*\/"
]
} | |