Youtube Upload Timer

Upload to youtube at a certain time.

Youtube Upload Timerคืออะไร?

Youtube Upload Timer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย niknah และคุณลักษณะหลักของมันคือ "Upload to youtube at a certain time."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Youtube Upload Timer

ดาวน์โหลดไฟล์ส่วนขยาย Youtube Upload Timer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension is not supplied by Youtube and is unrelated to them.

When you have a large video to upload and you don't want it to slow down your internet during the day.
Or if your internet provider gives you off-peak access for free.

Youtube let's you set a "scheduled publishing time" but not an upload time.

This is for setting a time for the upload process before the publishing.


Changes...
v1.0.3 Updated to Chrome extension manifest v3.

v1.0.2 Updated it so it'll work in Youtube studio.  The old uploader will be removed from Youtube in the future.

v1.0.1  Fixed problem with the buttons not appearing.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Youtube Upload Timer Youtube Upload Timer
ID ocpgggmabipnhemenjflgnflbcieplcc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/youtube-upload-timer/ocpgggmabipnhemenjflgnflbcieplcc
คำอธิบาย Upload to youtube at a certain time.
ขนาดไฟล์ 14.52 KB
จำนวนการติดตั้ง 468
เวอร์ชันปัจจุบัน 1.0.3
อัปเดตครั้งล่าสุด 2023-12-05
วันที่เผยแพร่ 2020-05-09
คะแนน 4.57/5 รวมทั้งหมด 7 คะแนน
ผู้พัฒนา niknah
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://groups.google.com/d/forum/weezeewig-chrome-extensions
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Upload Timer",
    "version": "1.0.3",
    "manifest_version": 3,
    "description": "Upload to youtube at a certain time.",
    "icons": {
        "128": "upload128.png"
    },
    "permissions": [
        "scripting",
        "activeTab"
    ],
    "host_permissions": [
        "https:\/\/studio.youtube.com\/"
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/studio.youtube.com\/*"
            ],
            "js": [
                "Youtube_Upload_Timer.user.js"
            ]
        }
    ]
}