Kaguya
An extension that allow you to use Kaguya
Qu'est-ce que Kaguya ?
Kaguya est une extension Chrome développée par hoangvuzxc538, et sa fonction principale est "An extension that allow you to use Kaguya".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Kaguya
Téléchargez les fichiers d'extension Kaguya au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Kaguya |
ID | jhinkdokgbijplmedcpkjdbcmjgockgc |
URL Officiel | https://chromewebstore.google.com/detail/kaguya/jhinkdokgbijplmedcpkjdbcmjgockgc |
Description | An extension that allow you to use Kaguya |
Taille du Fichier | 225 KB |
Nombre d'Installations | 775 |
Version Actuelle | 1.1.27 |
Dernière Mise à Jour | 2024-02-12 |
Date de Publication | 2023-08-01 |
Évaluation | 4.83/5 Total 6 Évaluations |
Développeur | hoangvuzxc538 |
[email protected] | |
Type de Paiement | free |
URL de la Page de Politique de Confidentialité | https://kaguya.app/privacy-policy |
Langues Prises en Charge | 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" ] } } |