YT Clipper

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

YT Clipperคืออะไร?

YT Clipper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย roblee357 และคุณลักษณะหลักของมันคือ "This extension will help create YouTube clips by sending clip start, stop, and titles to server."

ภาพหน้าจอของส่วนขยาย

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YT Clipper

ดาวน์โหลดไฟล์ส่วนขยาย 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",
        ""
    ]
}