Copy Text with URL

Copy current selected text and current URL

什么是Copy Text with URL?

Copy Text with URL是由jojonki开发的Chrome扩展程序,该扩展的主要功能是“Copy current selected text and current URL”。

扩展截图

screenshot

下载Copy Text with URL扩展crx文件

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

扩展使用说明

                        Copy selected text and current URL jointly! 

- Plain copy mode
You can fire the action by either clicking the extension icon or pressing "Ctrl+Shift+C".  The format is like below.

selected_text
http://curent_url


- Markdown copy mode
You can fire the action by pressing "Ctrl+Shift+M". The format is like below.

[selected_text](http://current_url)


You can also customize the shortcuts in your extension page. Perhaps, some shortcuts don't work in your environment. Please try the other ones.
- chrome://extensions/shortcuts

This extension is publicly available.
https://github.com/jojonki/copy-text-with-url                    

扩展基本信息

名称 Copy Text with URL Copy Text with URL
ID hbeifjjbjnpnpnffifmojplmlcjakhii
官方URL https://chromewebstore.google.com/detail/copy-text-with-url/hbeifjjbjnpnpnffifmojplmlcjakhii
简介 Copy current selected text and current URL
文件大小 531 KB
安装次数 61
当前版本 2.0
更新时间 2022-12-29
上架时间 2019-12-04
评分 4.00/5 共1次评分
开发者 jojonki
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/jojonki
帮助页面URL https://github.com/jojonki/copy-text-with-url
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Copy Text with URL",
    "version": "2.0",
    "description": "Copy current selected text and current URL",
    "permissions": [
        "activeTab",
        "notifications",
        "scripting"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": {
            "16": "images\/icon_16.png",
            "32": "images\/icon_32.png",
            "48": "images\/icon_48.png",
            "128": "images\/icon_128.png"
        },
        "default_title": "Copy Text with URL"
    },
    "commands": {
        "copy-text-with-url-as-plain": {
            "suggested_key": {
                "default": "Ctrl+Shift+C",
                "mac": "MacCtrl+Shift+C"
            },
            "description": "Copy text with URL as plain text",
            "global": false
        },
        "copy-text-with-url-as-markdown": {
            "suggested_key": {
                "default": "Ctrl+Shift+M",
                "mac": "MacCtrl+Shift+M"
            },
            "description": "Copy text with URL as markdown style",
            "global": false
        }
    },
    "icons": {
        "16": "images\/icon_128.png",
        "32": "images\/icon_128.png",
        "48": "images\/icon_128.png",
        "128": "images\/icon_128.png"
    },
    "manifest_version": 3
}