Copyables

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

Copyables क्या है?

Copyables Rudie Dirkx द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Makes the text/label of focused links copyable. Also via contextmenu."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Copyables एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Copyables Copyables
ID pgghkebpjnjjiblaajkkaniphdbfeogl
आधिकारिक URL https://chromewebstore.google.com/detail/copyables/pgghkebpjnjjiblaajkkaniphdbfeogl
विवरण Makes the text/label of focused links copyable. Also via contextmenu.
फ़ाइल का आकार 8.87 KB
स्थापना संख्या 40
वर्तमान संस्करण 1.9
अंतिम अपडेट 2022-09-25
प्रकाशन तिथि 2017-10-16
डेवलपर Rudie Dirkx
ईमेल [email protected]
भुगतान के प्रकार free
सहायता पृष्ठ URL https://github.com/rudiedirkx/copyables-extension/issues
समर्थित भाषाएँ 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": [
                ""
            ]
        }
    ]
}