Simple Video Skipper
Click Ctrl+Left to skip forward 5s, Ctrl+Right to skip 5s. Add Shift to increase to 10s.
What is Simple Video Skipper?
Simple Video Skipper is a Chrome extension developed by qifen.pocket, and its main feature is "Click Ctrl+Left to skip forward 5s, Ctrl+Right to skip 5s. Add Shift to increase to 10s.".
Extension Screenshots
Download Simple Video Skipper Extension CRX File
Download Simple Video Skipper extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
To save your time to do more things. Click Ctrl+Left to skip forward 5s, Ctrl+Right to skip 5s. Add Shift to increase to 10s.
Extension Basic Information
Name | Simple Video Skipper |
ID | biofolodkgjpmiokhifjifhkjdifdopp |
Official URL | https://chromewebstore.google.com/detail/simple-video-skipper/biofolodkgjpmiokhifjifhkjdifdopp |
Description | Click Ctrl+Left to skip forward 5s, Ctrl+Right to skip 5s. Add Shift to increase to 10s. |
File Size | 4.37 KB |
Installation Count | 46 |
Current Version | 1.2 |
Last Updated | 2021-02-07 |
Publish Date | 2021-01-28 |
Developer | qifen.pocket |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Simple Video Skipper", "description": "Click Ctrl+Left to skip forward 5s, Ctrl+Right to skip 5s. Add Shift to increase to 10s.", "version": "1.2", "manifest_version": 2, "permissions": [ "activeTab" ], "background": { "scripts": [ "background.js" ], "persistent": true }, "commands": { "skip-forward-5": { "suggested_key": { "default": "Ctrl+Left" }, "description": "skip forward 5s" }, "skip-5": { "suggested_key": { "default": "Ctrl+Right" }, "description": "skip forward 5s" }, "skip-forward-10": { "suggested_key": { "default": "Ctrl+Shift+Left" }, "description": "skip forward 10s" }, "skip-10": { "suggested_key": { "default": "Ctrl+Shift+Right" }, "description": "skip forward 10s" } } } |