Copyables

Makes the text/label of focused links copyable. Also via contextmenu.

什么是Copyables?

Copyables是由Rudie Dirkx开发的Chrome扩展程序,该扩展的主要功能是“Makes the text/label of focused links copyable. Also via contextmenu.”。

扩展截图

screenshot
screenshot

下载Copyables扩展crx文件

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

扩展使用说明

                        Makes the text/label of focused links copyable by using the normal copy keyboard command (CTRL + V for me).

Adds a contextmenu option to copy an element's text, for instance a link's label or a table cell's content.

Adds a contextmenu option to find background images.                    

扩展基本信息

名称 Copyables Copyables
ID pgghkebpjnjjiblaajkkaniphdbfeogl
官方URL https://chromewebstore.google.com/detail/copyables/pgghkebpjnjjiblaajkkaniphdbfeogl
简介 Makes the text/label of focused links copyable. Also via contextmenu.
文件大小 8.87 KB
安装次数 40
当前版本 1.9
更新时间 2022-09-25
上架时间 2017-10-16
开发者 Rudie Dirkx
电子邮箱 [email protected]
付费类型 free
帮助页面URL https://github.com/rudiedirkx/copyables-extension/issues
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Copyables",
    "version": "1.9",
    "manifest_version": 3,
    "description": "Makes the text\/label of focused links copyable. Also via contextmenu.",
    "icons": {
        "128": "images\/logo_128.png"
    },
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "service_worker": "copyables.sw.js"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "run_at": "document_end",
            "js": [
                "copyables.content.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}