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文件

下載Youtube Clip Playlist擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

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