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! 扩展基本信息
| 名称 | |
| ID | cfbjnjeaoamknmdojhgcblkebcphmcei |
| 官方URL | 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"
]
} | |