Copy Link Name

Copies the name of a link (anchor text) to the clipboard.

Copy Link Name क्या है?

Copy Link Name https://www.adelsaoud.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Copies the name of a link (anchor text) to the clipboard."।

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

screenshot

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

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

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

                        Developed exclusively for Chrome. This extension is not guaranteed to work with other Chromium-based browsers like Edge, Brave, Opera, etc... Please don't report issues or down-vote this extension in the Chrome Web Store if you're using a non-Chrome browser.

Makes it very easy to copy the visible text of a link (also called link name or anchor text).
Just right click on a link & choose "Copy Link Name".

Note: Like all Content Script extensions, this extension is automatically disabled in the Chrome Extensions site. So please test it on a normal web page.                    

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

नाम Copy Link Name Copy Link Name
ID mafjnaphoepgijmgfeemillelgkeigid
आधिकारिक URL https://chromewebstore.google.com/detail/copy-link-name/mafjnaphoepgijmgfeemillelgkeigid
विवरण Copies the name of a link (anchor text) to the clipboard.
फ़ाइल का आकार 10.84 KB
स्थापना संख्या 7,162
वर्तमान संस्करण 1.0.8
अंतिम अपडेट 2023-09-14
प्रकाशन तिथि 2016-10-14
रेटिंग 3.33/5 कुल 109 रेटिंग्स
डेवलपर https://www.adelsaoud.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://www.adelsaoud.com/
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Copy Link Name",
    "version": "1.0.8",
    "description": "Copies the name of a link (anchor text) to the clipboard.",
    "permissions": [
        "contextMenus",
        "clipboardWrite"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "images\/16.png",
        "48": "images\/48.png",
        "128": "images\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "copy_link_name.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ]
}