Copyables

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

Wat is Copyables?

Copyables is een Chrome-extensie ontwikkeld door Rudie Dirkx, en de belangrijkste functie is "Makes the text/label of focused links copyable. Also via contextmenu.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Copyables

Download Copyables-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Copyables Copyables
ID pgghkebpjnjjiblaajkkaniphdbfeogl
Officiële URL https://chromewebstore.google.com/detail/copyables/pgghkebpjnjjiblaajkkaniphdbfeogl
Beschrijving Makes the text/label of focused links copyable. Also via contextmenu.
Bestandsgrootte 8.87 KB
Aantal Installaties 40
Huidige Versie 1.9
Laatst Bijgewerkt 2022-09-25
Publicatiedatum 2017-10-16
Ontwikkelaar Rudie Dirkx
E-mail [email protected]
Betalingswijze free
Help Pagina-URL https://github.com/rudiedirkx/copyables-extension/issues
Ondersteunde Talen 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": [
                ""
            ]
        }
    ]
}