DoubleJump
Jump forwards and backwards in videos by double-tapping.
Vad är DoubleJump?
DoubleJump är en Chrome-tillägg utvecklad av Shrugal, och dess huvudfunktion är "Jump forwards and backwards in videos by double-tapping.".
Tilläggsskärmbilder
Ladda ner DoubleJump-förlängningens CRX-fil
Ladda ner DoubleJump-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | |
ID | ngfckfoeiocjpajinnkiabbkoponfmkk |
Officiell webbadress | https://chrome.google.com/webstore/detail/doublejump/ngfckfoeiocjpajinnkiabbkoponfmkk |
Beskrivning | Jump forwards and backwards in videos by double-tapping. |
Filstorlek | 39.97 KB |
Antal Installationer | 23 |
Aktuell Version | 1.1 |
Senast Uppdaterad | 2019-09-21 |
Publiceringsdatum | 2019-09-21 |
Betyg | 5.00/5 Totalt 2 Betyg |
Utvecklare | Shrugal |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://gitlab.com/shrugal/doublejump |
Hjälpsida URL | https://gitlab.com/shrugal/doublejump/issues |
Stödda Språk | 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" ] } } |