Video Seek Mousewheel
Seek (forward/backward) videos by mouse wheel horizantal scroll in video sites. ex: youtube and twitch
Vad är Video Seek Mousewheel?
Video Seek Mousewheel är en Chrome-tillägg utvecklad av Sarim Khan, och dess huvudfunktion är "Seek (forward/backward) videos by mouse wheel horizantal scroll in video sites. ex: youtube and twitch".
Tilläggsskärmbilder
Ladda ner Video Seek Mousewheel-förlängningens CRX-fil
Ladda ner Video Seek Mousewheel-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
If your mousewheel has horizontal scroll buttons, pressing it left/right will seek the video backward/forward in supported sites. Currently youtube and twitch is supported.
Grundläggande Information om Tillägg
Namn | |
ID | ngefegfkceoglabhfknldhgcammklekf |
Officiell webbadress | https://chrome.google.com/webstore/detail/video-seek-mousewheel/ngefegfkceoglabhfknldhgcammklekf |
Beskrivning | Seek (forward/backward) videos by mouse wheel horizantal scroll in video sites. ex: youtube and twitch |
Filstorlek | 9.78 KB |
Antal Installationer | 61 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2018-07-18 |
Publiceringsdatum | 2018-07-18 |
Betyg | 4.00/5 Totalt 9 Betyg |
Utvecklare | Sarim Khan |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/sarim/video-seek-mousewheel |
Hjälpsida URL | https://github.com/sarim/video-seek-mousewheel |
Stödda Språk | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Video Seek Mousewheel", "description": "Seek (forward\/backward) videos by mouse wheel horizantal scroll in video sites. ex: youtube and twitch", "version": "1.0", "permissions": [ "activeTab" ], "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*", "*:\/\/www.twitch.tv\/*", "*:\/\/player.twitch.tv\/*" ], "js": [ "inject.js" ] } ], "web_accessible_resources": [ "video-seek-mousewheel.js" ], "icons": { "128": "mouse.png" }, "manifest_version": 2 } |