shikimori-ext

Video player for shikimori

Что такое shikimori-ext?

shikimori-ext - это расширение Chrome, разработанное i.kalinin, и его основная функция - "Video player for shikimori".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения shikimori-ext

Скачайте файлы расширений shikimori-ext в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название shikimori-ext shikimori-ext
ID hiibdnpddilnbcffiphhpafhlajjkhok
Официальный URL https://chromewebstore.google.com/detail/shikimori-ext/hiibdnpddilnbcffiphhpafhlajjkhok
Описание Video player for shikimori
Размер файла 88.83 KB
Количество установок 636
Текущая Версия 0.1.2
Последнее Обновление 2023-04-16
Дата публикации 2022-03-07
Рейтинг 4.42/5 Всего 12 оценок
Разработчик i.kalinin
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/Rexagon/shikimori-ext
URL страницы помощи https://github.com/Rexagon/shikimori-ext/issues
Поддерживаемые языки 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": [
                ""
            ]
        }
    ]
}