Copy HTML Link
Copy link to the current page (with page title) to the clipboard.
Was ist Copy HTML Link?
Copy HTML Link ist eine Chrome-Erweiterung, die von Paul Irish entwickelt wurde, und ihr Hauptmerkmal ist "Copy link to the current page (with page title) to the clipboard.".
Copy HTML Link-Erweiterungs-CRX-Datei herunterladen
Laden Sie Copy HTML 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
Click once for HTML link and text fallback.
Double-click to copy text as markdown.
Also available via keyboard shortcut:
* Alt+Shift+C on Windows / Linux
* Ctrl+Shift+C on Mac
(Protip: Tapping the C twice will "double-click")
Source: https://github.com/paulirish/CopyLink-extension Grundlegende Informationen zur Erweiterung
| Name | |
| ID | ipefndfjbbonoeiaggfhibcnimekokjl |
| Offizielle URL | https://chrome.google.com/webstore/detail/copy-html-link/ipefndfjbbonoeiaggfhibcnimekokjl |
| Beschreibung | Copy link to the current page (with page title) to the clipboard. |
| Dateigröße | 17.37 KB |
| Installationsanzahl | 315 |
| Aktuelle Version | 1.2 |
| Letztes Update | 2016-11-05 |
| Veröffentlichungsdatum | 2016-11-05 |
| Bewertung | 4.75/5 Insgesamt 4 Bewertungen |
| Entwickler | Paul Irish |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/paulirish/CopyLink-extension |
| Hilfeseite URL | https://github.com/paulirish/CopyLink-extension/issues |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"background": {
"page": "background.html",
"persistent": false
},
"browser_action": {
"default_icon": "icon64.png",
"default_title": "Copy HTML Link"
},
"description": "Copy link to the current page (with page title) to the clipboard.",
"icons": {
"128": "icon128.png",
"16": "icon16.png",
"32": "icon32.png",
"64": "icon64.png"
},
"name": "Copy HTML Link",
"permissions": [
"activeTab",
"clipboardWrite",
"contextMenus"
],
"version": "1.2",
"commands": {
"copy-html-link": {
"suggested_key": {
"default": "Alt+Shift+C",
"mac": "MacCtrl+Shift+C"
},
"description": "Copy link of the page (with title)"
}
}
} | |