Copy Link With Title
This extension copies the current tab's link and title, formatted into Markdown, HTML, or a custom format.
Was ist Copy Link With Title?
Copy Link With Title ist eine Chrome-Erweiterung, die von Paul Cohn entwickelt wurde, und ihr Hauptmerkmal ist "This extension copies the current tab's link and title, formatted into Markdown, HTML, or a custom format.".
Erweiterungsscreenshots
Copy Link With Title-Erweiterungs-CRX-Datei herunterladen
Laden Sie Copy Link With Title-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 a link with the title for pasting into a notetaking app for clearer notes * Copy as HTML and paste into code * Copy as Markdown and paste into Reddit or Github * Define your own format for whatever crazy schemes you have Update 2021/08/25: * Updated icon for better visibility in dark mode. Update 2020/01/17: * Newlines work!
Grundlegende Informationen zur Erweiterung
Name | Copy Link With Title |
ID | cfbjnjeaoamknmdojhgcblkebcphmcei |
Offizielle URL | https://chromewebstore.google.com/detail/copy-link-with-title/cfbjnjeaoamknmdojhgcblkebcphmcei |
Beschreibung | This extension copies the current tab's link and title, formatted into Markdown, HTML, or a custom format. |
Dateigröße | 58.18 KB |
Installationsanzahl | 1,412 |
Aktuelle Version | 1.0.2 |
Letztes Update | 2021-08-25 |
Veröffentlichungsdatum | 2020-01-16 |
Bewertung | 3.54/5 Insgesamt 13 Bewertungen |
Entwickler | Paul Cohn |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://twitter.com/paulsterr |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Copy Link With Title", "description": "This extension copies the current tab's link and title, formatted into Markdown, HTML, or a custom format.", "version": "1.0.2", "browser_action": { "default_icon": "icon.png" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "options_ui": { "page": "options.html", "chrome_style": true }, "permissions": [ "activeTab", "storage" ] } |