Copyables

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

Copyables là gì?

Copyables là một tiện ích mở rộng Chrome được phát triển bởi Rudie Dirkx, và tính năng chính của nó là "Makes the text/label of focused links copyable. Also via contextmenu.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Copyables

Tải xuống các tệp mở rộng Copyables dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Copyables Copyables
ID pgghkebpjnjjiblaajkkaniphdbfeogl
URL Chính Thức https://chromewebstore.google.com/detail/copyables/pgghkebpjnjjiblaajkkaniphdbfeogl
Mô tả Makes the text/label of focused links copyable. Also via contextmenu.
Kích Thước Tệp 8.87 KB
Số Lần Cài Đặt 40
Phiên Bản Hiện Tại 1.9
Cập Nhật Lần Cuối 2022-09-25
Ngày Phát Hành 2017-10-16
Nhà Phát Triển Rudie Dirkx
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://github.com/rudiedirkx/copyables-extension/issues
Ngôn Ngữ Được Hỗ Trợ 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": [
                ""
            ]
        }
    ]
}