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開發的Chrome擴展程式,該擴展的主要功能是“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™擴展crx文件

下載Copy Title as Hyper-Link for YouTube™擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        *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
官方網址 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"
    }
}