Copy Link With Title
This extension copies the current tab's link and title, formatted into Markdown, HTML, or a custom format.
Apa itu Copy Link With Title?
Copy Link With Title adalah ekstensi Chrome yang dikembangkan oleh Paul Cohn, dan fitur utamanya adalah "This extension copies the current tab's link and title, formatted into Markdown, HTML, or a custom format.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Copy Link With Title
Unduh file ekstensi Copy Link With Title dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
* 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!
Informasi Dasar Ekstensi
Nama | Copy Link With Title |
ID | cfbjnjeaoamknmdojhgcblkebcphmcei |
URL Resmi | https://chromewebstore.google.com/detail/copy-link-with-title/cfbjnjeaoamknmdojhgcblkebcphmcei |
Deskripsi | This extension copies the current tab's link and title, formatted into Markdown, HTML, or a custom format. |
Ukuran File | 58.18 KB |
Jumlah Instalasi | 1,412 |
Versi Saat Ini | 1.0.2 |
Terakhir Diperbarui | 2021-08-25 |
Tanggal Publikasi | 2020-01-16 |
Penilaian | 3.54/5 Total 13 Penilaian |
Pengembang | Paul Cohn |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://twitter.com/paulsterr |
Bahasa yang Didukung | 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" ] } |