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": [
                ""
            ]
        }
    ]
}