Open in Youtube Music

Add a new navigation option to open Youtube videos in Youtube Music.

Open in Youtube Music란 무엇입니까?

Open in Youtube Music은(는) zacharysmith에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add a new navigation option to open Youtube videos in Youtube Music."입니다.

확장 프로그램 스크린샷

screenshot

Open in Youtube Music 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Adds GUI functionality to open the current youtube video in YouTube Music                    

확장 프로그램 기본 정보

이름 Open in Youtube Music Open in Youtube Music
ID dcoopjjnhnlllfiklggkeafanfnllfnf
공식 URL https://chromewebstore.google.com/detail/open-in-youtube-music/dcoopjjnhnlllfiklggkeafanfnllfnf
설명 Add a new navigation option to open Youtube videos in Youtube Music.
파일 크기 148 KB
설치 횟수 21
현재 버전 1.0
최근 업데이트 2022-05-17
출시 날짜 2022-05-17
개발자 zacharysmith
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://cutwell.github.io/open-youtube-music/
도움말 페이지 URL https://github.com/Cutwell/open-youtube-music
지원되는 언어 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Open in Youtube Music",
    "version": "1.0",
    "description": "Add a new navigation option to open Youtube videos in Youtube Music.",
    "permissions": [
        "storage"
    ],
    "action": {
        "default_icon": {
            "48": "data\/img\/icon48.png",
            "128": "data\/img\/icon128.png"
        }
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "icons": {
        "48": "data\/img\/icon48.png",
        "128": "data\/img\/icon128.png"
    },
    "content_scripts": [
        {
            "js": [
                "data\/js\/content.js"
            ],
            "css": [
                "data\/css\/extension.css"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ],
    "manifest_version": 3
}