Copy on Select

Select some text and it will be instantly copied to the clipboard! Paste it with one click!

Copy on Selectคืออะไร?

Copy on Select เป็นส่วนขยายของ Chrome ที่พัฒนาโดย micpob และคุณลักษณะหลักของมันคือ "Select some text and it will be instantly copied to the clipboard! Paste it with one click!"

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

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Copy on Select

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

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

                        Select any text in a web page and it will be automatically copied to the clipboard. 

You can also quickly paste the copied text by clicking on the mouse wheel, or by double clicking the left mouse button while keeping the Ctrl key pressed.

If you keep the Shift key pressed while pasting, the field into which you are pasting will be emptied of all already existing text before pasting.

IMPORTANT: please reload Chrome after installing the extension, in order to activate it.

Click on the extension button to turn the extension on/off.
Right click on the button to open the options page or the user guide.

NOTE: 
- The extension does not work on the New Tab page (the page that opens when you click on the + sign in Chrome). This is standard behaviour for all extensions.
- The extension does not work on pages whose URL starts with the word "chrome", for example chrome://extensions/ or chrome://settings/.                    

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

ชื่อ Copy on Select Copy on Select
ID kdfngfkkopeoejecmfejlcpblohnbael
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/copy-on-select/kdfngfkkopeoejecmfejlcpblohnbael
คำอธิบาย Select some text and it will be instantly copied to the clipboard! Paste it with one click!
ขนาดไฟล์ 503 KB
จำนวนการติดตั้ง 1,624
เวอร์ชันปัจจุบัน 2.0
อัปเดตครั้งล่าสุด 2023-09-20
วันที่เผยแพร่ 2021-12-26
คะแนน 4.27/5 รวมทั้งหมด 11 คะแนน
ผู้พัฒนา micpob
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en,fr,es,it,pt-BR
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extension_name__",
    "short_name": "CpyOnSlc",
    "version": "2.0",
    "content_security_policy": {
        "extension_pages": "default-src 'self'"
    },
    "description": "__MSG_extension_description__",
    "manifest_version": 3,
    "default_locale": "en",
    "icons": {
        "16": "Res\/Icons\/icon16.png",
        "24": "Res\/Icons\/icon24.png",
        "32": "Res\/Icons\/icon32.png",
        "48": "Res\/Icons\/icon48.png",
        "64": "Res\/Icons\/icon64.png",
        "128": "Res\/Icons\/icon128.png"
    },
    "background": {
        "service_worker": "bg-wrapper.js"
    },
    "permissions": [
        "clipboardRead",
        "clipboardWrite",
        "storage",
        "contextMenus"
    ],
    "options_ui": {
        "page": "Options\/options.html",
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "js": [
                "injectScript.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ],
            "all_frames": true,
            "run_at": "document_end",
            "match_about_blank": true
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "Res\/copied.svg"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "action": {
        "default_icon": {
            "16": "Res\/Icons\/icon16.png",
            "24": "Res\/Icons\/icon24.png",
            "32": "Res\/Icons\/icon32.png",
            "48": "Res\/Icons\/icon48.png",
            "64": "Res\/Icons\/icon64.png",
            "128": "Res\/Icons\/icon128.png"
        }
    }
}