Copy Link Text

Copies the text inside links

Copy Link Text là gì?

Copy Link Text là một tiện ích mở rộng Chrome được phát triển bởi vestakuphal285, và tính năng chính của nó là "Copies the text inside links".

Ả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 Copy Link Text

Tải xuống các tệp mở rộng Copy Link Text 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

                        Enables you to copy the text of a link within the context menu.
Just right click on the link and select "Copy link text".

Update ver: 1.12.1
 - Added copy text link history management feature, can review, export file txt and delete log history.
 - You can also share the copy text link history including text and link for you on social networks such as Twitter, LinkedIn and Facebook (automatically share using post api).                    

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

Tên Copy Link Text Copy Link Text
ID loeniidbmeohdlmipbpkfmiogbcncibh
URL Chính Thức https://chromewebstore.google.com/detail/copy-link-text/loeniidbmeohdlmipbpkfmiogbcncibh
Mô tả Copies the text inside links
Kích Thước Tệp 565 KB
Số Lần Cài Đặt 30,654
Phiên Bản Hiện Tại 3.0.1
Cập Nhật Lần Cuối 2023-11-20
Ngày Phát Hành 2020-09-25
Đánh Giá 3.23/5 Tổng số 78 Đánh Giá
Nhà Phát Triển vestakuphal285
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://sites.google.com/view/pass-generator-2023/home
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Copy Link Text",
    "description": "Copies the text inside links",
    "default_locale": "en",
    "version": "3.0.1",
    "icons": {
        "16": ".\/icon-128.png",
        "48": ".\/icon-128.png",
        "128": ".\/icon-128.png"
    },
    "content_scripts": [
        {
            "css": [
                ".\/content-style.css"
            ],
            "js": [
                ".\/js\/content_script.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "host_permissions": [
        "*:\/\/*.facebook.com\/*",
        "*:\/\/*.twitter.com\/*",
        "*:\/\/*.linkedin.com\/*",
        "*:\/\/anotepad.com\/*"
    ],
    "permissions": [
        "declarativeNetRequest",
        "storage",
        "contextMenus"
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "js\/background.js"
    }
}