Kaguya

An extension that allow you to use Kaguya

什么是Kaguya?

Kaguya是由hoangvuzxc538开发的Chrome扩展程序,该扩展的主要功能是“An extension that allow you to use Kaguya”。

扩展截图

screenshot

下载Kaguya扩展crx文件

下载Kaguya扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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