Copy Link With Title
This extension copies the current tab's link and title, formatted into Markdown, HTML, or a custom format.
什麼是Copy Link With Title?
Copy Link With Title是由Paul Cohn開發的Chrome擴展程式,該擴展的主要功能是“This extension copies the current tab's link and title, formatted into Markdown, HTML, or a custom format.”。
擴展截圖
下載Copy Link With Title擴展crx文件
下載Copy Link With Title擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
* 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!
擴展基本資訊
名稱 | Copy Link With Title |
ID | cfbjnjeaoamknmdojhgcblkebcphmcei |
官方網址 | https://chromewebstore.google.com/detail/copy-link-with-title/cfbjnjeaoamknmdojhgcblkebcphmcei |
簡介 | This extension copies the current tab's link and title, formatted into Markdown, HTML, or a custom format. |
檔案大小 | 58.18 KB |
安裝次數 | 1,412 |
目前版本 | 1.0.2 |
更新時間 | 2021-08-25 |
上架時間 | 2020-01-16 |
評分 | 3.54/5 共 13 次評分 |
開發者 | Paul Cohn |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://twitter.com/paulsterr |
支援的語言 | 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" ] } |