Dapplets

The Bridge to the Augmented Web.

什么是Dapplets?

Dapplets是由Dapplets Project开发的Chrome扩展程序,该扩展的主要功能是“The Bridge to the Augmented Web.”。

扩展截图

screenshot
screenshot
screenshot

下载Dapplets扩展crx文件

下载Dapplets扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Dapplets Dapplets
ID pjjnaojpjhgbhpfffnjleidmdbajagdj
官方URL https://chromewebstore.google.com/detail/dapplets/pjjnaojpjhgbhpfffnjleidmdbajagdj
简介 The Bridge to the Augmented Web.
文件大小 2 MB
安装次数 36
当前版本 0.70.1
更新时间 2023-12-25
上架时间 2023-07-08
评分 4.70/5 共10次评分
开发者 Dapplets Project
电子邮箱 [email protected]
付费类型 free
扩展官网 https://dapplets.org
帮助页面URL https://github.com/dapplets/dapplet-extension/issues
隐私政策页面URL https://dapplets.org/privacy-policy.html
支持的语言 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:\/\/*\/*"
    ]
}