Simple Plain Text Copy

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

Simple Plain Text Copyคืออะไร?

Simple Plain Text Copy เป็นส่วนขยายของ Chrome ที่พัฒนาโดย SimpleTools.nl และคุณลักษณะหลักของมันคือ "Easily copy the selected text without formatting to the clipboard via right-click menu."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Simple Plain Text Copy

ดาวน์โหลดไฟล์ส่วนขยาย Simple Plain Text Copy ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Simple Plain Text Copy Simple Plain Text Copy
ID plmcamaccbekbempmgeihfckecaoglog
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/simple-plain-text-copy/plmcamaccbekbempmgeihfckecaoglog
คำอธิบาย Easily copy the selected text without formatting to the clipboard via right-click menu.
ขนาดไฟล์ 799 KB
จำนวนการติดตั้ง 168
เวอร์ชันปัจจุบัน 1.0.2
อัปเดตครั้งล่าสุด 2019-12-03
วันที่เผยแพร่ 2019-11-28
ผู้พัฒนา SimpleTools.nl
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://www.simpletools.nl/
URL หน้านโยบายความเป็นส่วนตัว https://www.simpletools.nl/privacy.php
ภาษาที่รองรับ 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"
}