Copyables

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

Cos'è Copyables?

Copyables è un'estensione di Chrome sviluppata da Rudie Dirkx, e la sua funzione principale è "Makes the text/label of focused links copyable. Also via contextmenu.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Copyables

Scarica i file di estensione Copyables in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Copyables Copyables
ID pgghkebpjnjjiblaajkkaniphdbfeogl
URL Ufficiale https://chromewebstore.google.com/detail/copyables/pgghkebpjnjjiblaajkkaniphdbfeogl
Descrizione Makes the text/label of focused links copyable. Also via contextmenu.
Dimensione del File 8.87 KB
Conteggio Installazioni 40
Versione Corrente 1.9
Ultimo Aggiornamento 2022-09-25
Data di Pubblicazione 2017-10-16
Sviluppatore Rudie Dirkx
Email [email protected]
Tipo di Pagamento free
URL della Pagina di Aiuto https://github.com/rudiedirkx/copyables-extension/issues
Lingue Supportate 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": [
                ""
            ]
        }
    ]
}