Copyables

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

Copyablesคืออะไร?

Copyables เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Rudie Dirkx และคุณลักษณะหลักของมันคือ "Makes the text/label of focused links copyable. Also via contextmenu."

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

screenshot
screenshot

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

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

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

                        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.                    

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

ชื่อ Copyables Copyables
ID pgghkebpjnjjiblaajkkaniphdbfeogl
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/copyables/pgghkebpjnjjiblaajkkaniphdbfeogl
คำอธิบาย Makes the text/label of focused links copyable. Also via contextmenu.
ขนาดไฟล์ 8.87 KB
จำนวนการติดตั้ง 40
เวอร์ชันปัจจุบัน 1.9
อัปเดตครั้งล่าสุด 2022-09-25
วันที่เผยแพร่ 2017-10-16
ผู้พัฒนา Rudie Dirkx
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://github.com/rudiedirkx/copyables-extension/issues
ภาษาที่รองรับ 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": [
                ""
            ]
        }
    ]
}