Copyables

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

Was ist Copyables?

Copyables ist eine Chrome-Erweiterung, die von Rudie Dirkx entwickelt wurde, und ihr Hauptmerkmal ist "Makes the text/label of focused links copyable. Also via contextmenu.".

Erweiterungsscreenshots

screenshot
screenshot

Copyables-Erweiterungs-CRX-Datei herunterladen

Laden Sie Copyables-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Copyables Copyables
ID pgghkebpjnjjiblaajkkaniphdbfeogl
Offizielle URL https://chromewebstore.google.com/detail/copyables/pgghkebpjnjjiblaajkkaniphdbfeogl
Beschreibung Makes the text/label of focused links copyable. Also via contextmenu.
Dateigröße 8.87 KB
Installationsanzahl 40
Aktuelle Version 1.9
Letztes Update 2022-09-25
Veröffentlichungsdatum 2017-10-16
Entwickler Rudie Dirkx
E-Mail [email protected]
Zahlungsart free
Hilfeseite URL https://github.com/rudiedirkx/copyables-extension/issues
Unterstützte Sprachen 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": [
                ""
            ]
        }
    ]
}