Crunchyroll Timestamp Helper

This extension will allow you to click on timestamps from chat and move to the specified time in the video

Wat is Crunchyroll Timestamp Helper?

Crunchyroll Timestamp Helper is een Chrome-extensie ontwikkeld door Mario, en de belangrijkste functie is "This extension will allow you to click on timestamps from chat and move to the specified time in the video".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Crunchyroll Timestamp Helper

Download Crunchyroll Timestamp Helper-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Allows timestamps to be clickable in chat and skips forward to the timestamp when clicked.                    

Basisinformatie over de Extensie

Naam Crunchyroll Timestamp Helper Crunchyroll Timestamp Helper
ID pamhedcogfnafpdblkogpeediihohjob
Officiële URL https://chromewebstore.google.com/detail/crunchyroll-timestamp-hel/pamhedcogfnafpdblkogpeediihohjob
Beschrijving This extension will allow you to click on timestamps from chat and move to the specified time in the video
Bestandsgrootte 136 KB
Aantal Installaties 34
Huidige Versie 1.0.3
Laatst Bijgewerkt 2019-10-20
Publicatiedatum 2019-10-20
Ontwikkelaar Mario
Betalingswijze free
Ondersteunde Talen 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\/*"
    ]
}