Youtube Upload Timer

Upload to youtube at a certain time.

Youtube Upload Timer란 무엇입니까?

Youtube Upload Timer은(는) niknah에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Upload to youtube at a certain time."입니다.

확장 프로그램 스크린샷

screenshot

Youtube Upload Timer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
            ]
        }
    ]
}