Copyables

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

What is Copyables?

Copyables is a Chrome extension developed by Rudie Dirkx, and its main feature is "Makes the text/label of focused links copyable. Also via contextmenu.".

Extension Screenshots

screenshot
screenshot

Download Copyables Extension CRX File

Download Copyables extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Copyables Copyables
ID pgghkebpjnjjiblaajkkaniphdbfeogl
Official URL https://chromewebstore.google.com/detail/copyables/pgghkebpjnjjiblaajkkaniphdbfeogl
Description Makes the text/label of focused links copyable. Also via contextmenu.
File Size 8.87 KB
Installation Count 40
Current Version 1.9
Last Updated 2022-09-25
Publish Date 2017-10-16
Developer Rudie Dirkx
Email [email protected]
Payment Type free
Help Page URL https://github.com/rudiedirkx/copyables-extension/issues
Supported Languages 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": [
                ""
            ]
        }
    ]
}