Copyables

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

Co to jest Copyables?

Copyables to rozszerzenie Chrome opracowane przez Rudie Dirkx, a jego główną funkcją jest „Makes the text/label of focused links copyable. Also via contextmenu.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Copyables

Pobierz pliki rozszerzeń Copyables w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Copyables Copyables
ID pgghkebpjnjjiblaajkkaniphdbfeogl
Oficjalny URL https://chromewebstore.google.com/detail/copyables/pgghkebpjnjjiblaajkkaniphdbfeogl
Opis Makes the text/label of focused links copyable. Also via contextmenu.
Rozmiar pliku 8.87 KB
Liczba instalacji 40
Aktualna Wersja 1.9
Ostatnia Aktualizacja 2022-09-25
Data Publikacji 2017-10-16
Deweloper Rudie Dirkx
E-mail [email protected]
Typ Płatności free
Adres URL Strony Pomocy https://github.com/rudiedirkx/copyables-extension/issues
Obsługiwane Języki 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": [
                ""
            ]
        }
    ]
}