Copy Link/Tab Name and URL

Copy the name and URL of a link or a Tab.

Copy Link/Tab Name and URL क्या है?

Copy Link/Tab Name and URL https://sites.google.com/site/copylinknameandurl द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Copy the name and URL of a link or a Tab."।

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

screenshot
screenshot

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

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

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

                        It adds a command to the context munu on the link and copies the link's name(source anchor) and URL with the plain text format. It also copies the tab's titile and url.
So this extension makes it very easy to share the links with IM, Email, blog and so on.

It has a Preference Page to configure the Format.                    

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

नाम Copy Link/Tab Name and URL Copy Link/Tab Name and URL
ID noakklbbencpgcahamhocalnepfjeeok
आधिकारिक URL https://chromewebstore.google.com/detail/copy-linktab-name-and-url/noakklbbencpgcahamhocalnepfjeeok
विवरण Copy the name and URL of a link or a Tab.
फ़ाइल का आकार 11.64 KB
स्थापना संख्या 236
वर्तमान संस्करण 3.1
अंतिम अपडेट 2021-04-01
प्रकाशन तिथि 2020-02-26
डेवलपर https://sites.google.com/site/copylinknameandurl
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/wadefelix/copylinktabnameandurl
समर्थित भाषाएँ en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDescription__",
    "version": "3.1",
    "default_locale": "en",
    "homepage_url": "https:\/\/github.com\/wadefelix\/copylinktabnameandurl",
    "author": "Ren Wei",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "activeTab",
        "clipboardWrite",
        "contextMenus",
        "storage",
        "tabs"
    ],
    "icons": {
        "16": "icons\/page-16.png",
        "32": "icons\/page-32.png",
        "48": "icons\/page-48.png"
    },
    "options_ui": {
        "page": "options.html"
    }
}