Copy HTML Link
Copy link to the current page (with page title) to the clipboard.
Apa itu Copy HTML Link?
Copy HTML Link adalah ekstensi Chrome yang dikembangkan oleh Paul Irish, dan fitur utamanya adalah "Copy link to the current page (with page title) to the clipboard.".
Unduh Berkas CRX Ekstensi Copy HTML Link
Unduh file ekstensi Copy HTML Link 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
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
Informasi Dasar Ekstensi
Nama | |
ID | ipefndfjbbonoeiaggfhibcnimekokjl |
URL Resmi | https://chrome.google.com/webstore/detail/copy-html-link/ipefndfjbbonoeiaggfhibcnimekokjl |
Deskripsi | Copy link to the current page (with page title) to the clipboard. |
Ukuran File | 17.37 KB |
Jumlah Instalasi | 315 |
Versi Saat Ini | 1.2 |
Terakhir Diperbarui | 2016-11-05 |
Tanggal Publikasi | 2016-11-05 |
Penilaian | 4.75/5 Total 4 Penilaian |
Pengembang | Paul Irish |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/paulirish/CopyLink-extension |
URL Halaman Bantuan | https://github.com/paulirish/CopyLink-extension/issues |
Bahasa yang Didukung | 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)" } } } |