Copy video url

Copy video url

Copy video url란 무엇입니까?

Copy video url은(는) posky에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Copy video url"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Copy video url 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Play or add a Youtube video with SMPlayer (playlist).
Copy a video url that SMPlayer is able to play.
(Supported site: Youtube, Twitch, NaverTV, afreecaTV)

Play or add a Youtube video with mouse middle click on Youtube link.


Prerequisite to use play or add a Youtube video
- SMPlyaer: https://www.smplayer.info

- Modify registry
(Reference: https://docs.microsoft.com/en-us/previous-versions/windows/internet-explorer/ie-developer/platform-apis/aa767914(v=vs.85) )

HEKY_CLASSES_ROOT
  smplayer
    URL Protocol = ""
      shell
        open
          command
            (Default) = "File_Path\smplayer.exe" "%1"
  smplayer2
    URL Protocol = ""
      shell
        open
          command
            (Default) = "File_Path\smplayer.exe" -add-to-playlist "%1"


Change log

Ver 1.1
- add site (afreecaTV)

Ver 1.2
- add copy youtube url with current time                    

확장 프로그램 기본 정보

이름 Copy video url Copy video url
ID fhfmfaokjdlpcbbofolnncfegfhgoafk
공식 URL https://chromewebstore.google.com/detail/copy-video-url/fhfmfaokjdlpcbbofolnncfegfhgoafk
설명 Copy video url
파일 크기 79.35 KB
설치 횟수 817
현재 버전 1.4
최근 업데이트 2019-10-24
출시 날짜 2019-10-23
평점 2.00/5 총 4 개의 평점
개발자 posky
결제 유형 free
지원되는 언어 ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "persistent": true,
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "js\/modules\/jquery.min.js",
                "js\/youtube.js"
            ],
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ]
        }
    ],
    "description": "Copy video url",
    "icons": {
        "16": "images\/smplayer16.png",
        "32": "images\/smplayer32.png",
        "48": "images\/smplayer48.png",
        "128": "images\/smplayer128.png"
    },
    "manifest_version": 2,
    "name": "Copy video url",
    "options_ui": {
        "chrome_style": true,
        "page": "html\/options.html"
    },
    "page_action": {
        "default_icon": {
            "16": "images\/smplayer16.png",
            "32": "images\/smplayer32.png",
            "48": "images\/smplayer48.png",
            "128": "images\/smplayer128.png"
        },
        "default_title": "Copy video url"
    },
    "permissions": [
        "declarativeContent",
        "activeTab",
        "webRequest",
        "storage",
        "contextMenus",
        "*:\/\/*\/*m3u8*",
        "*:\/\/www.twitch.tv\/*",
        "*:\/\/www.youtube.com\/watch*",
        "*:\/\/tv.naver.com\/*",
        "*:\/\/sports.news.naver.com\/tv\/index.nhn*",
        "*:\/\/vod.afreecatv.com\/*"
    ],
    "version": "1.4"
}