Kaguya
An extension that allow you to use Kaguya
O que é Kaguya?
Kaguya é uma extensão do Chrome desenvolvida por hoangvuzxc538, e sua principal característica é "An extension that allow you to use Kaguya".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Kaguya
Baixe arquivos de extensão Kaguya no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Kaguya |
ID | jhinkdokgbijplmedcpkjdbcmjgockgc |
URL Oficial | https://chromewebstore.google.com/detail/kaguya/jhinkdokgbijplmedcpkjdbcmjgockgc |
Descrição | An extension that allow you to use Kaguya |
Tamanho do Arquivo | 225 KB |
Contagem de Instalações | 775 |
Versão Atual | 1.1.27 |
Última Atualização | 2024-02-12 |
Data de Publicação | 2023-08-01 |
Classificação | 4.83/5 Total de 6 Avaliações |
Desenvolvedor | hoangvuzxc538 |
[email protected] | |
Tipo de Pagamento | free |
URL da Página de Política de Privacidade | https://kaguya.app/privacy-policy |
Idiomas Suportados | 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" ] } } |