Copy Rich Link
Copy the page title and URL as rich text.
Was ist Copy Rich Link?
Copy Rich Link ist eine Chrome-Erweiterung, die von r7kamura entwickelt wurde, und ihr Hauptmerkmal ist "Copy the page title and URL as rich text.".
Erweiterungsscreenshots
Copy Rich Link-Erweiterungs-CRX-Datei herunterladen
Laden Sie Copy Rich Link-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
Copy the page title and URL as rich text.
Useful for pasting links to Slack, Google Docs, etc.
## Usage
Click the extension icon or execute the keyboard shortcut to copy the link to the page as rich text.
## Keyboard shortcut
The default keyboard shortcut is Ctrl + Shift + L, and Command + Shift + L on Mac.
This can be changed from the browser's extension settings.
## Plain text fallback
As a fallback, we also copy in plain text format in the form `"{title}" {url}`,
so that if you paste where rich text is not available or paste explicitly as plain text (Ctrl + Shift + V on Windows), this plain text format will be pasted. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | hikiamlgpdcabppakpmemaofmkgknpea |
| Offizielle URL | https://chromewebstore.google.com/detail/copy-rich-link/hikiamlgpdcabppakpmemaofmkgknpea |
| Beschreibung | Copy the page title and URL as rich text. |
| Dateigröße | 12.4 KB |
| Installationsanzahl | 253 |
| Aktuelle Version | 0.1.0 |
| Letztes Update | 2022-05-07 |
| Veröffentlichungsdatum | 2022-05-07 |
| Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
| Entwickler | r7kamura |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/r7kamura/copy-rich-link |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Copy Rich Link",
"description": "Copy the page title and URL as rich text.",
"version": "0.1.0",
"manifest_version": 3,
"action": {
"default_popup": "index.html",
"default_icon": {
"16": "images\/icon16.png",
"32": "images\/icon32.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
}
},
"icons": {
"16": "images\/icon16.png",
"32": "images\/icon32.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
},
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+Shift+L"
}
}
},
"permissions": [
"activeTab",
"clipboardWrite"
]
} | |