Crunchyroll Timestamp Helper
This extension will allow you to click on timestamps from chat and move to the specified time in the video
Hvad er Crunchyroll Timestamp Helper?
Crunchyroll Timestamp Helper er en Chrome-udvidelse udviklet af Mario, og dens hovedfunktion er "This extension will allow you to click on timestamps from chat and move to the specified time in the video".
Udvidelsesskærmbilleder
Download Crunchyroll Timestamp Helper-udvidelses-CRX-fil
Download Crunchyroll Timestamp Helper-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Allows timestamps to be clickable in chat and skips forward to the timestamp when clicked.
Grundlæggende oplysninger om udvidelsen
Navn | Crunchyroll Timestamp Helper |
ID | pamhedcogfnafpdblkogpeediihohjob |
Officiel URL | https://chromewebstore.google.com/detail/crunchyroll-timestamp-hel/pamhedcogfnafpdblkogpeediihohjob |
Beskrivelse | This extension will allow you to click on timestamps from chat and move to the specified time in the video |
Filstørrelse | 136 KB |
Antal Installationer | 34 |
Nuværende Version | 1.0.3 |
Senest Opdateret | 2019-10-20 |
Udgivelsesdato | 2019-10-20 |
Udvikler | Mario |
Betalingsmetode | free |
Understøttede Sprog | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Crunchyroll Timestamp Helper", "description": "This extension will allow you to click on timestamps from chat and move to the specified time in the video", "version": "1.0.3", "author": "Mathew Anjos", "content_scripts": [ { "matches": [ "https:\/\/www.crunchyroll.com\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_icon": "images\/icon.png" }, "icons": { "16": "images\/icon.png", "48": "images\/icon.png", "128": "images\/icon.png" }, "permissions": [ "activeTab", "*:\/\/*.crunchyroll.com\/*" ] } |