YT Clipper

This extension will help create YouTube clips by sending clip start, stop, and titles to server.

什么是YT Clipper?

YT Clipper是由roblee357开发的Chrome扩展程序,该扩展的主要功能是“This extension will help create YouTube clips by sending clip start, stop, and titles to server.”。

扩展截图

下载YT Clipper扩展crx文件

下载YT Clipper扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Can be useful in creating a training dataset.                    

扩展基本信息

名称 YT Clipper YT Clipper
ID dbphcgefoicnofkngjonipaoonggnphj
官方URL https://chromewebstore.google.com/detail/yt-clipper/dbphcgefoicnofkngjonipaoonggnphj
简介 This extension will help create YouTube clips by sending clip start, stop, and titles to server.
文件大小 773 KB
安装次数 42
当前版本 1.0
更新时间 2021-06-10
上架时间 2021-06-09
开发者 roblee357
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YT Clipper",
    "description": "This extension will help create YouTube clips by sending clip start, stop, and titles to server.",
    "version": "1.0",
    "browser_action": {
        "default_title": "YT Clipper",
        "default_icon": "images\/icon128.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "permissions": [
        "tabs",
        ""
    ]
}