Kaguya

An extension that allow you to use Kaguya

Kaguya란 무엇입니까?

Kaguya은(는) hoangvuzxc538에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension that allow you to use Kaguya"입니다.

확장 프로그램 스크린샷

screenshot

Kaguya 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Kaguya Extension is a powerful tool designed to enhance the user experience on our website (Kaguya) by providing a seamless and convenient way to access free streaming content from various websites. This extension allows our website to scrape other websites for free streaming links, enabling them to find and watch their favourite anime shows or read their favourite manga without any hassle.                    

확장 프로그램 기본 정보

이름 Kaguya Kaguya
ID jhinkdokgbijplmedcpkjdbcmjgockgc
공식 URL https://chromewebstore.google.com/detail/kaguya/jhinkdokgbijplmedcpkjdbcmjgockgc
설명 An extension that allow you to use Kaguya
파일 크기 225 KB
설치 횟수 775
현재 버전 1.1.27
최근 업데이트 2024-02-12
출시 날짜 2023-08-01
평점 4.83/5 총 6 개의 평점
개발자 hoangvuzxc538
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://kaguya.app/privacy-policy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Kaguya",
    "version": "1.1.27",
    "description": "An extension that allow you to use Kaguya",
    "background": {
        "service_worker": "src\/pages\/background\/index.js",
        "type": "module"
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "action": [],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/kaguya.app\/*",
                "http:\/\/localhost\/*",
                "https:\/\/*.kaguya.app\/*"
            ],
            "js": [
                "src\/pages\/content\/index.js"
            ],
            "run_at": "document_start"
        }
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/kaguya.app\/*",
            "https:\/\/*.kaguya.app\/*",
            "http:\/\/localhost\/*"
        ]
    },
    "devtools_page": "src\/pages\/devtools\/index.html",
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/js\/*.js",
                "assets\/css\/*.css",
                "icon16.png",
                "icon32.png",
                "icon48.png",
                "icon128.png",
                "src\/pages\/sandbox\/index.html"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "permissions": [
        "declarativeNetRequest",
        "offscreen"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "content_security_policy": {
        "extension_pages": "default-src 'self'; connect-src ws:\/\/localhost:8081\/ http:\/\/* https:\/\/* data: blob: filesystem:;"
    },
    "sandbox": {
        "pages": [
            "src\/pages\/sandbox\/index.html"
        ]
    }
}