shikimori-ext

Video player for shikimori

What is shikimori-ext?

shikimori-ext is a Chrome extension developed by i.kalinin, and its main feature is "Video player for shikimori".

Extension Screenshots

screenshot

Download shikimori-ext Extension CRX File

Download shikimori-ext extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name shikimori-ext shikimori-ext
ID hiibdnpddilnbcffiphhpafhlajjkhok
Official URL https://chromewebstore.google.com/detail/shikimori-ext/hiibdnpddilnbcffiphhpafhlajjkhok
Description Video player for shikimori
File Size 88.83 KB
Installation Count 636
Current Version 0.1.2
Last Updated 2023-04-16
Publish Date 2022-03-07
Rating 4.42/5 Total 12 Ratings
Developer i.kalinin
Email [email protected]
Payment Type free
Extension Website https://github.com/Rexagon/shikimori-ext
Help Page URL https://github.com/Rexagon/shikimori-ext/issues
Supported Languages 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": [
                ""
            ]
        }
    ]
}