Crunchyroll Timestamp Helper
This extension will allow you to click on timestamps from chat and move to the specified time in the video
Vad är Crunchyroll Timestamp Helper?
Crunchyroll Timestamp Helper är en Chrome-tillägg utvecklad av Mario, och dess huvudfunktion är "This extension will allow you to click on timestamps from chat and move to the specified time in the video".
Tilläggsskärmbilder
Ladda ner Crunchyroll Timestamp Helper-förlängningens CRX-fil
Ladda ner Crunchyroll Timestamp Helper-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Allows timestamps to be clickable in chat and skips forward to the timestamp when clicked.
Grundläggande Information om Tillägg
Namn | Crunchyroll Timestamp Helper |
ID | pamhedcogfnafpdblkogpeediihohjob |
Officiell webbadress | https://chromewebstore.google.com/detail/crunchyroll-timestamp-hel/pamhedcogfnafpdblkogpeediihohjob |
Beskrivning | This extension will allow you to click on timestamps from chat and move to the specified time in the video |
Filstorlek | 136 KB |
Antal Installationer | 34 |
Aktuell Version | 1.0.3 |
Senast Uppdaterad | 2019-10-20 |
Publiceringsdatum | 2019-10-20 |
Utvecklare | Mario |
Betalningssätt | free |
Stödda Språk | 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\/*" ] } |