Copy Title as Hyper-Link for YouTube™

Copy (CTRL+C, CMD+C, Edit->Copy) with nothing selected and the title of the current YouTube video will be copied as a hyperlink

Copy Title as Hyper-Link for YouTube™ क्या है?

Copy Title as Hyper-Link for YouTube™ Leigh Murray द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Copy (CTRL+C, CMD+C, Edit->Copy) with nothing selected and the title of the current YouTube video will be copied as a hyperlink"।

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

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

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

                        *Make sure you refresh your YouTube tabs after installing this extension.

If you issue a Copy command (CTRL+C, CMD+C, Edit->Copy) with nothing selected or highlighted on the page, the title of the current YouTube video will be copied as a hyperlink using the short youtu.be format so you can paste it in Word, etc.

A 'Copied!' notification will display briefly when the hyperlink is copied successfully.                    

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

नाम Copy Title as Hyper-Link for YouTube™ Copy Title as Hyper-Link for YouTube™
ID hgcjodjfhekkfffkikfmplmedpkbacbd
आधिकारिक URL https://chrome.google.com/webstore/detail/copy-title-as-hyper-link/hgcjodjfhekkfffkikfmplmedpkbacbd
विवरण Copy (CTRL+C, CMD+C, Edit->Copy) with nothing selected and the title of the current YouTube video will be copied as a hyperlink
फ़ाइल का आकार 46.3 KB
स्थापना संख्या 45
वर्तमान संस्करण 1.1
अंतिम अपडेट 2013-11-11
प्रकाशन तिथि 2013-11-11
रेटिंग 3.80/5 कुल 5 रेटिंग्स
डेवलपर Leigh Murray
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Copy Title as Hyper-Link for YouTube\u2122",
    "description": "Copy (CTRL+C, CMD+C, Edit->Copy) with nothing selected and the title of the current YouTube video will be copied as a hyperlink",
    "version": "1.1",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.youtube.com\/watch*",
                "https:\/\/*.youtube.com\/watch*"
            ],
            "js": [
                "myscript.js",
                "jquery.min.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "manifest_version": 2,
    "permissions": [
        "http:\/\/*.youtube.com\/*",
        "https:\/\/*.youtube.com\/*",
        "clipboardWrite",
        "clipboardRead"
    ],
    "background": {
        "page": "background.html"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}