Pro Mode for YouTube Video Editor

Enables various hotkeys to speed up and generally make YouTube's video editor more usable.

什麼是Pro Mode for YouTube Video Editor?

Pro Mode for YouTube Video Editor是由Kelly Davis開發的Chrome擴展程式,該擴展的主要功能是“Enables various hotkeys to speed up and generally make YouTube's video editor more usable.”。

擴展截圖

screenshot

下載Pro Mode for YouTube Video Editor擴展crx文件

下載Pro Mode for YouTube Video Editor擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Update 0.24 2016/12/08

- Add upload button which links to Youtube video upload page

Update 0.22 - 2016/3/30

- Modified add clip (via button or enter key) to not open the clip to allow rapidly adding clips

Update 0.21 - 2016/03/16

 - Added browser action button to launch the YouTube Video Editor
 - Updated UI for the playback controls

Update 0.20 - 2016/03/15

 - Hotkey indicators on tabs
 - Toast notifications to provide feedback to the user
 - Improvements to clip previews
 - Improvements to add clip/image behavior
 - Better integration with existing Youtube provided hotkeys (preview with Spacebar and add with Enter key)
 - Updated help screen

Update 0.19 - 2016/03/14

 - Modified to allow preview video and audio to play normally
 - Pause/Play button hidden on deactivation

Update 0.18 - 2016/03/10

 - Fixed font loading error
 - Improved loading of Google Analytics

Update 0.17 - 2016/03/10

 - Added welcome screens and review, support, and demo video links
 - Fixed bug in decrease clip length

Update 0.16 - 2016/03/09

 - Improved increase/decrease clip duration performance using simulated click/drag

Update 0.15 - 2016/03/08

 - Updated graphics for scrub bar
 - Added play / pause button
 - Removed the lag in the automatic player pause when making video edits
 - Modified scrub bar to seek video in the player
 - Fixed bugs in the next/prev clip commands and the increase/decrease clip duration commands

Update 0.14 - 2015/10/27

 - Fixed pause/play functionality in current version of Chrome

Update 0.13 - 2015/07/27

 - Add a playback status label to clarify whether playback is currently active
 - Add next clip select '.' and previous clip select ',' hot keys
 - Modify scroll to current clip hotkey 'p' behavior to toggle between start and end of clip
 - Add separate timeline scrollbar that will lock the timeline position for improved scrolling behavior

Update 0.12 - 2015/07/24 - Modified the script to more aggressively interrupt the preview playback to give better control over pause / playback.


Pro Mode for YouTube Video Editor is a Chrome extension which enhances the YouTube Video Editor with keyboard shortcuts and other usability improvements. It was born of many frustrations associating with editing lengthy videos using the video editor.

Usage

The extension activates when you browse to the YouTube video editor url (https://www.youtube.com/editor). All of the keyboard shortcuts are documented on the help screen which can be opened by pressing the 'H' key.

Start / Stop playback

The spacebar will start and stop playback of the current clip or the entire video. This is useful as the editor will often immediately start playing back after every edit.

Tab selection keys

Keys 1-6 are used for selecting the various editing tabs (Video, Audio, Photos, etc). Pressing them will allow you to select another piece of content without losing the current selection. This is useful because when the current clip is unselected, the player preview will start from the beginning, causing you to lose your place in the video.

Timeline navigation

The 'P' key will scroll the timeline to the currently selected clip. This is convenient because often the timeline will automatically scroll to the start despite having a clip selected. The '[' and ']' keys allow scrolling to the start and end of the timeline.

Sort photos

When the Photos tab is open, the 'S' key will cause the current set of photos to be sorted alphabetically. This is useful when re-opening an existing project with photos causes them to be displayed out of order.                    

擴展基本資訊

名稱 Pro Mode for YouTube Video Editor Pro Mode for YouTube Video Editor
ID aenmbapdfjdkanhfppdmmdipakgacanp
官方網址 https://chromewebstore.google.com/detail/pro-mode-for-youtube-vide/aenmbapdfjdkanhfppdmmdipakgacanp
簡介 Enables various hotkeys to speed up and generally make YouTube's video editor more usable.
檔案大小 364 KB
安裝次數 10,000
目前版本 0.24
更新時間 2016-12-08
上架時間 2016-12-08
評分 3.24/5 共 511 次評分
開發者 Kelly Davis
電子郵箱 [email protected]
付費類型 free
擴展官網 http://kldavis4.github.io/Pro-Mode-for-YouTube-Video-Editor/
說明頁面URL https://github.com/kldavis4/yteditorpro/issues
隱私政策頁面URL https://github.com/kldavis4/yteditorpro/wiki/Privacy-Policy
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Pro Mode for YouTube Video Editor",
    "minimum_chrome_version": "22.0.0.0",
    "description": "Enables various hotkeys to speed up and generally make YouTube's video editor more usable.",
    "version": "0.24",
    "short_name": "YTEditorProMode",
    "browser_action": {
        "default_icon": {
            "19": "images\/icon19.png",
            "38": "images\/icon38.png"
        }
    },
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/editor*"
            ],
            "css": [
                "css\/bootstrap.css",
                "css\/style.css",
                "css\/toastr.min.css"
            ],
            "js": [
                "js\/jquery-1.11.1.min.js",
                "js\/bootstrap.js",
                "js\/syn.js",
                "js\/toastr.min.js",
                "js\/yteditorpro.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "images\/*.png",
        "images\/jquery-ui\/*.png",
        "fonts\/glyphicons*",
        "html\/*"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "js\/jquery-1.11.1.min.js",
            "js\/browseraction.js",
            "js\/gahelper.js"
        ]
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}