Copy URL with Title (plain text/markdown)

Copy the title and URL in plain text/markdown format by keyboard shortcuts: Ctrl+C/Cmd+C for plain text, Alt+C/Opt+C for markdown.

什么是Copy URL with Title (plain text/markdown)?

Copy URL with Title (plain text/markdown)是由https://takashyx.com开发的Chrome扩展程序,该扩展的主要功能是“Copy the title and URL in plain text/markdown format by keyboard shortcuts: Ctrl+C/Cmd+C for plain text, Alt+C/Opt+C for markdown.”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Copy URL with Title (plain text/markdown)扩展crx文件

下载Copy URL with Title (plain text/markdown)扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        --------------------------------------------------------------------------------
UPDATES
--------------------------------------------------------------------------------
Ver 1.1.1.1:
FIX: Description on chrome web store

Ver 1.1.1.0:
ADD: Duration settings for notification

Ver 1.1.0.6:
FIX: Workaround for non-https pages

Ver 1.1.0.5:
FIX:   Correction of the phenomenon that text is not copied to the clipboard
ADD: Option menu
ADD: New customizable toast UI
--------------------------------------------------------------------------------
FEATURES
--------------------------------------------------------------------------------
1. Copy title and URL in text format
Control+C(Win/Linux) / Command+C(Mac)

2. Copy in markdown link format
Alt+C(Win/Linux) / Option+C(Mac)

3. Normal copy
Select -> Control+C(Win/Linux) / Command+C(Mac) 

4.Settings
Right click the extension icon -> Options
--------------------------------------------------------------------------------                    

扩展基本信息

名称 Copy URL with Title (plain text/markdown) Copy URL with Title (plain text/markdown)
ID bpcogbhmkdjaohcmlghhkiohmldpnkoh
官方URL https://chromewebstore.google.com/detail/copy-url-with-title-plain/bpcogbhmkdjaohcmlghhkiohmldpnkoh
简介 Copy the title and URL in plain text/markdown format by keyboard shortcuts: Ctrl+C/Cmd+C for plain text, Alt+C/Opt+C for markdown.
文件大小 16.72 KB
安装次数 1,343
当前版本 1.1.1.1
更新时间 2022-08-20
上架时间 2020-04-02
评分 3.07/5 共14次评分
开发者 https://takashyx.com
电子邮箱 [email protected]
付费类型 free
扩展官网 http://takashyx.com/portfolio/copy-url-with-title-2015/
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Copy URL with Title (plain text\/markdown)",
    "short_name": "Copy URL with Title",
    "description": "Copy the title and URL in plain text\/markdown format by keyboard shortcuts: Ctrl+C\/Cmd+C for plain text, Alt+C\/Opt+C for markdown.",
    "version": "1.1.1.1",
    "icons": {
        "128": "icon_128.png",
        "48": "icon_048.png",
        "32": "icon_032.png",
        "16": "icon_016.png"
    },
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "copyurlwithtitle.js",
                "toast.js",
                "options.js"
            ],
            "run_at": "document_start"
        }
    ]
}