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.」です。
拡張機能のスクリーンショット
Youtube Upload Timer拡張機能のCRXファイルをダウンロード
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 |
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 |
Eメール | [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" ] } ] } |