shikimori-ext

Video player for shikimori

Co to jest shikimori-ext?

shikimori-ext to rozszerzenie Chrome opracowane przez i.kalinin, a jego główną funkcją jest „Video player for shikimori”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia shikimori-ext

Pobierz pliki rozszerzeń shikimori-ext 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

                        This extension adds "Watch" button directly to the anime page and provides a simple player using public APIs.

The app developer has nothing to do with the Shikimori owner. All video materials are stored on third-party servers in the public domain.                    

Podstawowe informacje o rozszerzeniu

Nazwa shikimori-ext shikimori-ext
ID hiibdnpddilnbcffiphhpafhlajjkhok
Oficjalny URL https://chromewebstore.google.com/detail/shikimori-ext/hiibdnpddilnbcffiphhpafhlajjkhok
Opis Video player for shikimori
Rozmiar pliku 88.83 KB
Liczba instalacji 636
Aktualna Wersja 0.1.2
Ostatnia Aktualizacja 2023-04-16
Data Publikacji 2022-03-07
Ocena 4.42/5 Łącznie 12 Oceny
Deweloper i.kalinin
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/Rexagon/shikimori-ext
Adres URL Strony Pomocy https://github.com/Rexagon/shikimori-ext/issues
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "shikimori-ext",
    "description": "Video player for shikimori",
    "version": "0.1.2",
    "manifest_version": 3,
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.shikimori.one\/*",
                "https:\/\/*.shikimori.me\/*"
            ],
            "css": [
                "inpage.css"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "inpage.js",
                "watch.html"
            ],
            "matches": [
                ""
            ]
        }
    ]
}