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 |
电子邮箱 | [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" ] } ] } |