DoubleJump

Jump forwards and backwards in videos by double-tapping.

Wat is DoubleJump?

DoubleJump is een Chrome-extensie ontwikkeld door Shrugal, en de belangrijkste functie is "Jump forwards and backwards in videos by double-tapping.".

Extensie Screenshots

Download het CRX-bestand van de extensie DoubleJump

Download DoubleJump-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam DoubleJump DoubleJump
ID ngfckfoeiocjpajinnkiabbkoponfmkk
Officiële URL https://chrome.google.com/webstore/detail/doublejump/ngfckfoeiocjpajinnkiabbkoponfmkk
Beschrijving Jump forwards and backwards in videos by double-tapping.
Bestandsgrootte 39.97 KB
Aantal Installaties 23
Huidige Versie 1.1
Laatst Bijgewerkt 2019-09-21
Publicatiedatum 2019-09-21
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar Shrugal
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://gitlab.com/shrugal/doublejump
Help Pagina-URL https://gitlab.com/shrugal/doublejump/issues
Ondersteunde Talen 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"
        ]
    }
}