Crunchyroll Timestamp Helper
This extension will allow you to click on timestamps from chat and move to the specified time in the video
Co je Crunchyroll Timestamp Helper?
Crunchyroll Timestamp Helper je rozšíření Chrome vyvinuté Mario, a jeho hlavní funkcí je „This extension will allow you to click on timestamps from chat and move to the specified time in the video“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Crunchyroll Timestamp Helper
Stáhněte si soubory rozšíření Crunchyroll Timestamp Helper ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
Allows timestamps to be clickable in chat and skips forward to the timestamp when clicked.
Základní Informace o Rozšíření
Název | Crunchyroll Timestamp Helper |
ID | pamhedcogfnafpdblkogpeediihohjob |
Oficiální URL | https://chromewebstore.google.com/detail/crunchyroll-timestamp-hel/pamhedcogfnafpdblkogpeediihohjob |
Popis | This extension will allow you to click on timestamps from chat and move to the specified time in the video |
Velikost souboru | 136 KB |
Počet instalací | 34 |
Aktuální Verze | 1.0.3 |
Poslední Aktualizace | 2019-10-20 |
Datum Vydání | 2019-10-20 |
Vývojář | Mario |
Typ Platby | free |
Podporované Jazyky | 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\/*" ] } |