Youtube Clip Playlist

This is a playlist tool to play video clips with "start~end time" directly on Youtube/Onedrive/GoogleDrive/TwitCasting.

Youtube Clip Playlist란 무엇입니까?

Youtube Clip Playlist은(는) https://blog.maki0419.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This is a playlist tool to play video clips with "start~end time" directly on Youtube/Onedrive/GoogleDrive/TwitCasting."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Youtube Clip Playlist 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Chrome Web Store continues to reject my product information, making it impossible for me to provide explanations here.
I was asked to describe my product without mentioning any keywords, which is impossible.
Therefore, please visit the GitHub of this project and the introduction blog post for detailed explanations.
https://github.com/YoutubeClipPlaylist/YoutubeClipPlaylist
https://blog.maki0419.com/2022/06/chrome-extension-youtube-clip-playlist.html

I apologize to everyone here and sincerely sorry for any inconvenience caused to users. 😥                    

확장 프로그램 기본 정보

이름 Youtube Clip Playlist Youtube Clip Playlist
ID kdlhjpdoaabhpolkaghkjklfcdfjapkh
공식 URL https://chromewebstore.google.com/detail/youtube-clip-playlist/kdlhjpdoaabhpolkaghkjklfcdfjapkh
설명 This is a playlist tool to play video clips with "start~end time" directly on Youtube/Onedrive/GoogleDrive/TwitCasting.
파일 크기 535 KB
설치 횟수 225
현재 버전 15.2.6
최근 업데이트 2023-12-18
출시 날짜 2022-06-18
평점 4.80/5 총 5 개의 평점
개발자 https://blog.maki0419.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://blog.maki0419.com/2022/06/chrome-extension-youtube-clip-playlist.html
도움말 페이지 URL https://github.com/YoutubeClipPlaylist/YoutubeClipPlaylist/issues
지원되는 언어 en,zh-TW,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "description": "__MSG_extDescription__",
    "version": "15.2.6",
    "manifest_version": 3,
    "default_locale": "en",
    "permissions": [
        "storage",
        "tabs",
        "unlimitedStorage"
    ],
    "host_permissions": [
        "https:\/\/github.com\/*",
        "https:\/\/gitlab.com\/*",
        "https:\/\/*.githubusercontent.com\/*"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": {
            "16": "assets\/icon\/icon16.png",
            "32": "assets\/icon\/icon32.png",
            "48": "assets\/icon\/icon48.png",
            "128": "assets\/icon\/icon128.png"
        },
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "assets\/icon\/icon16.png",
        "32": "assets\/icon\/icon32.png",
        "48": "assets\/icon\/icon48.png",
        "128": "assets\/icon\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*",
                "https:\/\/drive.google.com\/*",
                "https:\/\/youtube.googleapis.com\/*",
                "https:\/\/*.sharepoint.com\/*",
                "https:\/\/onedrive.live.com\/*",
                "https:\/\/twitcasting.tv\/*"
            ],
            "run_at": "document_start",
            "all_frames": true,
            "js": [
                "contentScript.js"
            ],
            "css": [
                "contentScript.css"
            ]
        },
        {
            "matches": [
                "https:\/\/www.youtube.com\/*",
                "https:\/\/drive.google.com\/*",
                "https:\/\/youtube.googleapis.com\/*",
                "https:\/\/*.sharepoint.com\/*",
                "https:\/\/onedrive.live.com\/*",
                "https:\/\/twitcasting.tv\/*"
            ],
            "run_at": "document_idle",
            "all_frames": true,
            "js": [
                "assets\/assjs\/ass.min.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "contentScript.html",
                "contentScript_lyricHelper.html"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*",
                "https:\/\/drive.google.com\/*",
                "https:\/\/youtube.googleapis.com\/*",
                "https:\/\/*.sharepoint.com\/*",
                "https:\/\/onedrive.live.com\/*",
                "https:\/\/twitcasting.tv\/*"
            ]
        }
    ]
}