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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    }
}