Copyables

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

Hvad er Copyables?

Copyables er en Chrome-udvidelse udviklet af Rudie Dirkx, og dens hovedfunktion er "Makes the text/label of focused links copyable. Also via contextmenu.".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Copyables-udvidelses-CRX-fil

Download Copyables-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Copyables Copyables
ID pgghkebpjnjjiblaajkkaniphdbfeogl
Officiel URL https://chromewebstore.google.com/detail/copyables/pgghkebpjnjjiblaajkkaniphdbfeogl
Beskrivelse Makes the text/label of focused links copyable. Also via contextmenu.
Filstørrelse 8.87 KB
Antal Installationer 40
Nuværende Version 1.9
Senest Opdateret 2022-09-25
Udgivelsesdato 2017-10-16
Udvikler Rudie Dirkx
E-mail [email protected]
Betalingsmetode free
Hjælpeside-URL https://github.com/rudiedirkx/copyables-extension/issues
Understøttede Sprog 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": [
                ""
            ]
        }
    ]
}