Copyables

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

Apa itu Copyables?

Copyables adalah ekstensi Chrome yang dikembangkan oleh Rudie Dirkx, dan fitur utamanya adalah "Makes the text/label of focused links copyable. Also via contextmenu.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Copyables

Unduh file ekstensi Copyables dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Copyables Copyables
ID pgghkebpjnjjiblaajkkaniphdbfeogl
URL Resmi https://chromewebstore.google.com/detail/copyables/pgghkebpjnjjiblaajkkaniphdbfeogl
Deskripsi Makes the text/label of focused links copyable. Also via contextmenu.
Ukuran File 8.87 KB
Jumlah Instalasi 40
Versi Saat Ini 1.9
Terakhir Diperbarui 2022-09-25
Tanggal Publikasi 2017-10-16
Pengembang Rudie Dirkx
Email [email protected]
Tipe Pembayaran free
URL Halaman Bantuan https://github.com/rudiedirkx/copyables-extension/issues
Bahasa yang Didukung 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": [
                ""
            ]
        }
    ]
}