Dapplets

The Bridge to the Augmented Web.

¿Qué es Dapplets?

Dapplets es una extensión de Chrome desarrollada por Dapplets Project, y su función principal es "The Bridge to the Augmented Web.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Dapplets

Descarga archivos de extensión Dapplets en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        Dapplets is an extension for injecting new functionality elements called Dapplets into existing websites. Dapplets are small augmenting applications developed and audited by the dapplet community. 

The project Dapplets follows the ethics of free public blockchains where the development and audit is verifiable and provided by the open community. At the same time the User is free to select any Dapplets to run based on their audit status and maturity or disable them.

Dapplets require read and write permissions to any website to augment it. You can always either verify the source code or rely on the audit status set by auditors you trust.

You will find the source code of the DappletBridge on Github:
https://github.com/dapplets/dapplet-extension                    

Información Básica de la Extensión

Nombre Dapplets Dapplets
ID pjjnaojpjhgbhpfffnjleidmdbajagdj
URL Oficial https://chromewebstore.google.com/detail/dapplets/pjjnaojpjhgbhpfffnjleidmdbajagdj
Descripción The Bridge to the Augmented Web.
Tamaño del Archivo 2 MB
Cantidad de Instalaciones 36
Versión Actual 0.70.1
Última Actualización 2023-12-25
Fecha de Publicación 2023-07-08
Calificación 4.70/5 Total de 10 Calificaciones
Desarrollador Dapplets Project
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://dapplets.org
URL de la Página de Ayuda https://github.com/dapplets/dapplet-extension/issues
URL de la Página de Política de Privacidad https://dapplets.org/privacy-policy.html
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Dapplets",
    "version": "0.70.1",
    "version_name": "0.70.1",
    "description": "The Bridge to the Augmented Web.",
    "author": "Dapplets Team ",
    "short_name": "Dapplets",
    "background": {
        "service_worker": "service-worker.js",
        "type": "module"
    },
    "minimum_chrome_version": "92",
    "action": {
        "default_icon": {
            "16": "icons\/icon16.png",
            "19": "icons\/icon19.png",
            "32": "icons\/icon32.png",
            "36": "icons\/icon36.png",
            "38": "icons\/icon38.png",
            "48": "icons\/icon48.png",
            "64": "icons\/icon64.png",
            "96": "icons\/icon96.png",
            "128": "icons\/icon128.png",
            "512": "icons\/icon512.png"
        }
    },
    "icons": {
        "16": "icons\/icon16.png",
        "19": "icons\/icon19.png",
        "32": "icons\/icon32.png",
        "36": "icons\/icon36.png",
        "38": "icons\/icon38.png",
        "48": "icons\/icon48.png",
        "64": "icons\/icon64.png",
        "96": "icons\/icon96.png",
        "128": "icons\/icon128.png",
        "512": "icons\/icon512.png"
    },
    "sandbox": {
        "pages": [
            "sandbox.html"
        ]
    },
    "content_security_policy": {
        "sandbox": "sandbox allow-scripts; script-src 'self' 'unsafe-inline' blob:"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "custom-elements.min.js",
                "contentscript.js"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "https:\/\/app.mynearwallet.com\/*",
                "https:\/\/testnet.mynearwallet.com\/*"
            ],
            "js": [
                "mnw-patch-cs.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "callback.html",
                "sandbox.html",
                "inpage.js",
                "worker.js",
                "mnw-patch-inpage.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "activeTab",
        "storage",
        "unlimitedStorage",
        "offscreen"
    ],
    "host_permissions": [
        "*:\/\/localhost\/*",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}