Copy Rich Link
Copy the page title and URL as rich text.
什么是Copy Rich Link?
Copy Rich Link是由r7kamura开发的Chrome扩展程序,该扩展的主要功能是“Copy the page title and URL as rich text.”。
扩展截图
下载Copy Rich Link扩展crx文件
下载Copy Rich Link扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Copy the page title and URL as rich text. Useful for pasting links to Slack, Google Docs, etc. ## Usage Click the extension icon or execute the keyboard shortcut to copy the link to the page as rich text. ## Keyboard shortcut The default keyboard shortcut is Ctrl + Shift + L, and Command + Shift + L on Mac. This can be changed from the browser's extension settings. ## Plain text fallback As a fallback, we also copy in plain text format in the form `"{title}" {url}`, so that if you paste where rich text is not available or paste explicitly as plain text (Ctrl + Shift + V on Windows), this plain text format will be pasted.
扩展基本信息
名称 | Copy Rich Link |
ID | hikiamlgpdcabppakpmemaofmkgknpea |
官方URL | https://chromewebstore.google.com/detail/copy-rich-link/hikiamlgpdcabppakpmemaofmkgknpea |
简介 | Copy the page title and URL as rich text. |
文件大小 | 12.4 KB |
安装次数 | 253 |
当前版本 | 0.1.0 |
更新时间 | 2022-05-07 |
上架时间 | 2022-05-07 |
评分 | 5.00/5 共1次评分 |
开发者 | r7kamura |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/r7kamura/copy-rich-link |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Copy Rich Link", "description": "Copy the page title and URL as rich text.", "version": "0.1.0", "manifest_version": 3, "action": { "default_popup": "index.html", "default_icon": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } }, "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "commands": { "_execute_action": { "suggested_key": { "default": "Ctrl+Shift+L" } } }, "permissions": [ "activeTab", "clipboardWrite" ] } |