Dapplets

The Bridge to the Augmented Web.

Cos'è Dapplets?

Dapplets è un'estensione di Chrome sviluppata da Dapplets Project, e la sua funzione principale è "The Bridge to the Augmented Web.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Dapplets

Scarica i file di estensione Dapplets in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Dapplets Dapplets
ID pjjnaojpjhgbhpfffnjleidmdbajagdj
URL Ufficiale https://chromewebstore.google.com/detail/dapplets/pjjnaojpjhgbhpfffnjleidmdbajagdj
Descrizione The Bridge to the Augmented Web.
Dimensione del File 2 MB
Conteggio Installazioni 36
Versione Corrente 0.70.1
Ultimo Aggiornamento 2023-12-25
Data di Pubblicazione 2023-07-08
Valutazione 4.70/5 Totale 10 Valutazioni
Sviluppatore Dapplets Project
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://dapplets.org
URL della Pagina di Aiuto https://github.com/dapplets/dapplet-extension/issues
URL della Pagina della Politica sulla Privacy https://dapplets.org/privacy-policy.html
Lingue Supportate 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:\/\/*\/*"
    ]
}