Dapplets

The Bridge to the Augmented Web.

Co je Dapplets?

Dapplets je rozšíření Chrome vyvinuté Dapplets Project, a jeho hlavní funkcí je „The Bridge to the Augmented Web.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Dapplets

Stáhněte si soubory rozšíření Dapplets ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Dapplets Dapplets
ID pjjnaojpjhgbhpfffnjleidmdbajagdj
Oficiální URL https://chromewebstore.google.com/detail/dapplets/pjjnaojpjhgbhpfffnjleidmdbajagdj
Popis The Bridge to the Augmented Web.
Velikost souboru 2 MB
Počet instalací 36
Aktuální Verze 0.70.1
Poslední Aktualizace 2023-12-25
Datum Vydání 2023-07-08
Hodnocení 4.70/5 Celkem 10 Hodnocení
Vývojář Dapplets Project
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://dapplets.org
URL Stránky Nápovědy https://github.com/dapplets/dapplet-extension/issues
URL Stránky Zásad Ochrany Soukromí https://dapplets.org/privacy-policy.html
Podporované Jazyky 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:\/\/*\/*"
    ]
}