Crunchyroll Timestamp Helper

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

Was ist Crunchyroll Timestamp Helper?

Crunchyroll Timestamp Helper ist eine Chrome-Erweiterung, die von Mario entwickelt wurde, und ihr Hauptmerkmal ist "This extension will allow you to click on timestamps from chat and move to the specified time in the video".

Erweiterungsscreenshots

screenshot

Crunchyroll Timestamp Helper-Erweiterungs-CRX-Datei herunterladen

Laden Sie Crunchyroll Timestamp Helper-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Crunchyroll Timestamp Helper Crunchyroll Timestamp Helper
ID pamhedcogfnafpdblkogpeediihohjob
Offizielle URL https://chromewebstore.google.com/detail/crunchyroll-timestamp-hel/pamhedcogfnafpdblkogpeediihohjob
Beschreibung This extension will allow you to click on timestamps from chat and move to the specified time in the video
Dateigröße 136 KB
Installationsanzahl 34
Aktuelle Version 1.0.3
Letztes Update 2019-10-20
Veröffentlichungsdatum 2019-10-20
Entwickler Mario
Zahlungsart free
Unterstützte Sprachen 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\/*"
    ]
}