Pro Mode for YouTube Video Editor

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

Qu'est-ce que Pro Mode for YouTube Video Editor ?

Pro Mode for YouTube Video Editor est une extension Chrome développée par Kelly Davis, et sa fonction principale est "Enables various hotkeys to speed up and generally make YouTube's video editor more usable.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Pro Mode for YouTube Video Editor

Téléchargez les fichiers d'extension Pro Mode for YouTube Video Editor au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Pro Mode for YouTube Video Editor Pro Mode for YouTube Video Editor
ID aenmbapdfjdkanhfppdmmdipakgacanp
URL Officiel https://chromewebstore.google.com/detail/pro-mode-for-youtube-vide/aenmbapdfjdkanhfppdmmdipakgacanp
Description Enables various hotkeys to speed up and generally make YouTube's video editor more usable.
Taille du Fichier 364 KB
Nombre d'Installations 10,000
Version Actuelle 0.24
Dernière Mise à Jour 2016-12-08
Date de Publication 2016-12-08
Évaluation 3.24/5 Total 511 Évaluations
Développeur Kelly Davis
Email [email protected]
Type de Paiement free
Site Web de l'Extension http://kldavis4.github.io/Pro-Mode-for-YouTube-Video-Editor/
URL de la Page d'Aide https://github.com/kldavis4/yteditorpro/issues
URL de la Page de Politique de Confidentialité https://github.com/kldavis4/yteditorpro/wiki/Privacy-Policy
Langues Prises en Charge 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'"
}