Crunchyroll Timestamp Helper
This extension will allow you to click on timestamps from chat and move to the specified time in the video
What is Crunchyroll Timestamp Helper?
Crunchyroll Timestamp Helper is a Chrome extension developed by Mario, and its main feature is "This extension will allow you to click on timestamps from chat and move to the specified time in the video".
Extension Screenshots
Download Crunchyroll Timestamp Helper Extension CRX File
Download Crunchyroll Timestamp Helper extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Allows timestamps to be clickable in chat and skips forward to the timestamp when clicked.
Extension Basic Information
Name | Crunchyroll Timestamp Helper |
ID | pamhedcogfnafpdblkogpeediihohjob |
Official URL | https://chromewebstore.google.com/detail/crunchyroll-timestamp-hel/pamhedcogfnafpdblkogpeediihohjob |
Description | This extension will allow you to click on timestamps from chat and move to the specified time in the video |
File Size | 136 KB |
Installation Count | 34 |
Current Version | 1.0.3 |
Last Updated | 2019-10-20 |
Publish Date | 2019-10-20 |
Developer | Mario |
Payment Type | free |
Supported Languages | 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\/*" ] } |