Youtube Clip Playlist

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

¿Qué es Youtube Clip Playlist?

Youtube Clip Playlist es una extensión de Chrome desarrollada por https://blog.maki0419.com, y su función principal es "This is a playlist tool to play video clips with "start~end time" directly on Youtube/Onedrive/GoogleDrive/TwitCasting.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Youtube Clip Playlist

Descarga archivos de extensión Youtube Clip Playlist en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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. 😥                    

Información Básica de la Extensión

Nombre Youtube Clip Playlist Youtube Clip Playlist
ID kdlhjpdoaabhpolkaghkjklfcdfjapkh
URL Oficial https://chromewebstore.google.com/detail/youtube-clip-playlist/kdlhjpdoaabhpolkaghkjklfcdfjapkh
Descripción This is a playlist tool to play video clips with "start~end time" directly on Youtube/Onedrive/GoogleDrive/TwitCasting.
Tamaño del Archivo 535 KB
Cantidad de Instalaciones 225
Versión Actual 15.2.6
Última Actualización 2023-12-18
Fecha de Publicación 2022-06-18
Calificación 4.80/5 Total de 5 Calificaciones
Desarrollador https://blog.maki0419.com
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://blog.maki0419.com/2022/06/chrome-extension-youtube-clip-playlist.html
URL de la Página de Ayuda https://github.com/YoutubeClipPlaylist/YoutubeClipPlaylist/issues
Idiomas Soportados 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\/*"
            ]
        }
    ]
}