Copy URL+
Copy a short URL, title, and selected text in any format you want.
Was ist Copy URL+?
Copy URL+ ist eine Chrome-Erweiterung, die von Naoto Yokoyama entwickelt wurde, und ihr Hauptmerkmal ist "Copy a short URL, title, and selected text in any format you want.".
Erweiterungsscreenshots
Copy URL+-Erweiterungs-CRX-Datei herunterladen
Laden Sie Copy URL+-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Key features
- Keyboard shortcuts
- Flexible context menus
- URL shortening
- Notifications
Icons and promotional images are designed by Honeshabri. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | capojgaalppngkaagaobmigigcgnidmn |
| Offizielle URL | https://chromewebstore.google.com/detail/copy-url+/capojgaalppngkaagaobmigigcgnidmn |
| Beschreibung | Copy a short URL, title, and selected text in any format you want. |
| Dateigröße | 35.59 KB |
| Installationsanzahl | 3,796 |
| Aktuelle Version | 1.1.1 |
| Letztes Update | 2020-08-06 |
| Veröffentlichungsdatum | 2020-08-06 |
| Bewertung | 3.93/5 Insgesamt 45 Bewertungen |
| Entwickler | Naoto Yokoyama |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | 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:\/\/*\/"
]
} | |