Simple Plain Text Copy

Easily copy the selected text without formatting to the clipboard via right-click menu.

Simple Plain Text Copy là gì?

Simple Plain Text Copy là một tiện ích mở rộng Chrome được phát triển bởi SimpleTools.nl, và tính năng chính của nó là "Easily copy the selected text without formatting to the clipboard via right-click menu.".

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

screenshot
screenshot
screenshot

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

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

                        1. Visit the page that you want

2. Select the formatted text that you want to copy as plain text

3. You will see "Copy As Plain Text" option in right-click menu

4. It's done. Your text is copied to your clipboard without any formatting

Permission Description
1. Data Access: This allows addon to understand the selected text

2. Clipboard: Your selected text will copied to your clipboard                    

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

Tên Simple Plain Text Copy Simple Plain Text Copy
ID plmcamaccbekbempmgeihfckecaoglog
URL Chính Thức https://chromewebstore.google.com/detail/simple-plain-text-copy/plmcamaccbekbempmgeihfckecaoglog
Mô tả Easily copy the selected text without formatting to the clipboard via right-click menu.
Kích Thước Tệp 799 KB
Số Lần Cài Đặt 168
Phiên Bản Hiện Tại 1.0.2
Cập Nhật Lần Cuối 2019-12-03
Ngày Phát Hành 2019-11-28
Nhà Phát Triển SimpleTools.nl
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.simpletools.nl/
URL Trang Chính Sách Bảo Mật https://www.simpletools.nl/privacy.php
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "browser_action": {
        "default_title": "__MSG_extName__",
        "default_popup": "copy.html",
        "default_icon": "icons\/exif128.png"
    },
    "default_locale": "en",
    "description": "__MSG_extDesc__",
    "manifest_version": 2,
    "name": "__MSG_extName__",
    "icons": {
        "128": "icons\/exif128.png",
        "64": "icons\/exif64.png",
        "32": "icons\/exif32.png",
        "16": "icons\/exif16.png"
    },
    "permissions": [
        "activeTab",
        "contextMenus",
        "clipboardWrite"
    ],
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "js\/jquery-3.2.1.min.js",
                "js\/content-script.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "version": "1.0.2"
}