Copyables

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

Vad är Copyables?

Copyables är en Chrome-tillägg utvecklad av Rudie Dirkx, och dess huvudfunktion är "Makes the text/label of focused links copyable. Also via contextmenu.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Copyables-förlängningens CRX-fil

Ladda ner Copyables-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Copyables Copyables
ID pgghkebpjnjjiblaajkkaniphdbfeogl
Officiell webbadress https://chromewebstore.google.com/detail/copyables/pgghkebpjnjjiblaajkkaniphdbfeogl
Beskrivning Makes the text/label of focused links copyable. Also via contextmenu.
Filstorlek 8.87 KB
Antal Installationer 40
Aktuell Version 1.9
Senast Uppdaterad 2022-09-25
Publiceringsdatum 2017-10-16
Utvecklare Rudie Dirkx
E-post [email protected]
Betalningssätt free
Hjälpsida URL https://github.com/rudiedirkx/copyables-extension/issues
Stödda Språk 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": [
                ""
            ]
        }
    ]
}