Crunchyroll Timestamp Helper
This extension will allow you to click on timestamps from chat and move to the specified time in the video
Qu'est-ce que Crunchyroll Timestamp Helper ?
Crunchyroll Timestamp Helper est une extension Chrome développée par Mario, et sa fonction principale est "This extension will allow you to click on timestamps from chat and move to the specified time in the video".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Crunchyroll Timestamp Helper
Téléchargez les fichiers d'extension Crunchyroll Timestamp Helper au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Allows timestamps to be clickable in chat and skips forward to the timestamp when clicked.
Informations de Base sur l'Extension
Nom | Crunchyroll Timestamp Helper |
ID | pamhedcogfnafpdblkogpeediihohjob |
URL Officiel | 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 |
Taille du Fichier | 136 KB |
Nombre d'Installations | 34 |
Version Actuelle | 1.0.3 |
Dernière Mise à Jour | 2019-10-20 |
Date de Publication | 2019-10-20 |
Développeur | Mario |
Type de Paiement | free |
Langues Prises en Charge | 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\/*" ] } |