Crunchyroll Timestamp Helper

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

Co to jest Crunchyroll Timestamp Helper?

Crunchyroll Timestamp Helper to rozszerzenie Chrome opracowane przez Mario, a jego główną funkcją jest „This extension will allow you to click on timestamps from chat and move to the specified time in the video”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Crunchyroll Timestamp Helper

Pobierz pliki rozszerzeń Crunchyroll Timestamp Helper w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Crunchyroll Timestamp Helper Crunchyroll Timestamp Helper
ID pamhedcogfnafpdblkogpeediihohjob
Oficjalny URL https://chromewebstore.google.com/detail/crunchyroll-timestamp-hel/pamhedcogfnafpdblkogpeediihohjob
Opis This extension will allow you to click on timestamps from chat and move to the specified time in the video
Rozmiar pliku 136 KB
Liczba instalacji 34
Aktualna Wersja 1.0.3
Ostatnia Aktualizacja 2019-10-20
Data Publikacji 2019-10-20
Deweloper Mario
Typ Płatności free
Obsługiwane Języki 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\/*"
    ]
}