Creator Calendar

A calendar view and scheduler for your YouTube Video Manager

Creator Calendarคืออะไร?

Creator Calendar เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://cmcgdd.com และคุณลักษณะหลักของมันคือ "A calendar view and scheduler for your YouTube Video Manager"

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

screenshot

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

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

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

                        Update 9/11/17:

Head over to the options menu to choose whether to view scheduled videos on the current page, or all scheduled videos (up to 30). An 3rd experimental option to allow viewing all scheduled videos without limit will be coming in a future update.

****

Creator Calendar is a simple calendar view for your upcoming scheduled videos on YouTube. It provides a collapsible calendar that allows content creators to quickly and easily ensure that all of their content is scheduled for the proper day and time, and allows creators to drag-and-drop their private videos into the calendar for hassle-free scheduling.

Once installed, simply click "Show Calendar" at the top of the Video Manager Page in the Creator Studio. Video thumbnails will appear on the day corresponding to their scheduled publishing. Hover your mouse over a thumbnail to view the video title and scheduled time.

Expand your calendar and drag the 3x3 grid symbol to the right of any private video into a calendar tile. Select a time in the popup, click 'Schedule' to confirm, and bingo bango! Your video has been scheduled!

Other Features:
* Start weeks on Sunday or Monday.
* Color code each day of the week.
* Right click scheduled thumbnails to quickly create a Google Calendar Event Template.

Disclaimer: This software is still in early stages of development and may contain bugs. The software is provided "as-is" by the developer with no expressed or implied warranties.                    

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

ชื่อ Creator Calendar Creator Calendar
ID apiebcfkgeoeapfpflpojlicoijcpemc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/creator-calendar/apiebcfkgeoeapfpflpojlicoijcpemc
คำอธิบาย A calendar view and scheduler for your YouTube Video Manager
ขนาดไฟล์ 76 KB
จำนวนการติดตั้ง 393
เวอร์ชันปัจจุบัน 0.6.0
อัปเดตครั้งล่าสุด 2017-09-11
วันที่เผยแพร่ 2017-09-11
คะแนน 4.33/5 รวมทั้งหมด 12 คะแนน
ผู้พัฒนา https://cmcgdd.com
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Creator Calendar",
    "description": "A calendar view and scheduler for your YouTube Video Manager",
    "version": "0.6.0",
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/my_videos?*"
            ],
            "js": [
                "jquery-3.1.0.min.js",
                "interact.min.js",
                "interactions.js",
                "populateMethods.js",
                "content.js",
                "calendar.js"
            ],
            "css": [
                "cc_styles.css"
            ]
        }
    ],
    "icons": {
        "32": "icon32.png",
        "64": "icon64.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_title": "Go To Video Manager"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}