shikimori-ext

Video player for shikimori

Was ist shikimori-ext?

shikimori-ext ist eine Chrome-Erweiterung, die von i.kalinin entwickelt wurde, und ihr Hauptmerkmal ist "Video player for shikimori".

Erweiterungsscreenshots

screenshot

shikimori-ext-Erweiterungs-CRX-Datei herunterladen

Laden Sie shikimori-ext-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

                        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.                    

Grundlegende Informationen zur Erweiterung

Name shikimori-ext shikimori-ext
ID hiibdnpddilnbcffiphhpafhlajjkhok
Offizielle URL https://chromewebstore.google.com/detail/shikimori-ext/hiibdnpddilnbcffiphhpafhlajjkhok
Beschreibung Video player for shikimori
Dateigröße 88.83 KB
Installationsanzahl 636
Aktuelle Version 0.1.2
Letztes Update 2023-04-16
Veröffentlichungsdatum 2022-03-07
Bewertung 4.42/5 Insgesamt 12 Bewertungen
Entwickler i.kalinin
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/Rexagon/shikimori-ext
Hilfeseite URL https://github.com/Rexagon/shikimori-ext/issues
Unterstützte Sprachen 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": [
                ""
            ]
        }
    ]
}