VODPeek: Twitch Highlight Finder
Easily find best moments in Twitch VOD!
Was ist VODPeek: Twitch Highlight Finder?
VODPeek: Twitch Highlight Finder ist eine Chrome-Erweiterung, die von https://vodpeek.com entwickelt wurde, und ihr Hauptmerkmal ist "Easily find best moments in Twitch VOD!".
Erweiterungsscreenshots
VODPeek: Twitch Highlight Finder-Erweiterungs-CRX-Datei herunterladen
Laden Sie VODPeek: Twitch Highlight Finder-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Discover Funny, Fail, and Epic moments in Twitch VODs with just a peek, saving you valuable time by skipping the boring parts. A helpful tool for Youtube editors. Features: ✔️ Clip Timestamp: Effortlessly browse and jump to all the clips created in a VOD. ✔️ Match History Overview: Showcase matches played in the VOD, including kills and significant events, enabling you to swiftly grasp the key moments. (currently only supports League of Legends) ✔️ Chat Visualizer: Visualize viewer engagement through graphs, identifying sections where viewers were most active. ✔️ Chat Filtering: Search for specific keywords, emotes, or viewer interactions in the chat graphs. ✔️ Take Screenshot: Download full frame screenshot of current playing VOD (based on current video quality) ✔️ Download Clip: Add a "Download Clip" button next to Clip Timestamp. (on/off setting in popup)
Grundlegende Informationen zur Erweiterung
Name | VODPeek: Twitch Highlight Finder |
ID | pohioolkanpgkjpjmmmbionipblnekbb |
Offizielle URL | https://chromewebstore.google.com/detail/vodpeek-twitch-highlight/pohioolkanpgkjpjmmmbionipblnekbb |
Beschreibung | Easily find best moments in Twitch VOD! |
Dateigröße | 262 KB |
Installationsanzahl | 149 |
Aktuelle Version | 1.3.0 |
Letztes Update | 2023-07-29 |
Veröffentlichungsdatum | 2023-06-24 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | https://vodpeek.com |
[email protected] | |
Zahlungsart | free |
URL der Datenschutzrichtlinien-Seite | https://www.vodpeek.com/privacy |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "VODPeek: Twitch Highlight Finder", "description": "Easily find best moments in Twitch VOD!", "version": "1.3.0", "manifest_version": 3, "content_scripts": [ { "matches": [ "*:\/\/www.twitch.tv\/*" ], "css": [ "assets\/content-style.css" ], "js": [ "content-script3.js" ] } ], "action": { "default_popup": "popup\/popup.html", "default_icon": "assets\/icon.png", "default_title": "Twitch Vod Highlights" }, "icons": { "16": "assets\/icon.png", "32": "assets\/icon.png", "48": "assets\/icon.png", "128": "assets\/icon.png" }, "background": { "service_worker": "background.js" }, "permissions": [ "storage", "tabs", "cookies" ], "host_permissions": [ "https:\/\/www.vodpeek.com\/" ] } |