DoubleJump

Jump forwards and backwards in videos by double-tapping.

What is DoubleJump?

DoubleJump is a Chrome extension developed by Shrugal, and its main feature is "Jump forwards and backwards in videos by double-tapping.".

Extension Screenshots

Download DoubleJump Extension CRX File

Download DoubleJump 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

                        Use double tap to control videos:

- Left side: Jump backwards 10s
- Right side: Jump forwards 10s
- Middle area: Toggle fullscreen (just like normal)

Only available in YouTube for now.                    

Extension Basic Information

Name DoubleJump DoubleJump
ID ngfckfoeiocjpajinnkiabbkoponfmkk
Official URL https://chrome.google.com/webstore/detail/doublejump/ngfckfoeiocjpajinnkiabbkoponfmkk
Description Jump forwards and backwards in videos by double-tapping.
File Size 39.97 KB
Installation Count 23
Current Version 1.1
Last Updated 2019-09-21
Publish Date 2019-09-21
Rating 5.00/5 Total 2 Ratings
Developer Shrugal
Email [email protected]
Payment Type free
Extension Website https://gitlab.com/shrugal/doublejump
Help Page URL https://gitlab.com/shrugal/doublejump/issues
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "DoubleJump",
    "version": "1.1",
    "description": "Jump forwards and backwards in videos by double-tapping.",
    "manifest_version": 2,
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "reload.js"
        ]
    }
}