Dapplets

The Bridge to the Augmented Web.

Τι είναι το Dapplets;

Το Dapplets είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Dapplets Project, και η κύρια λειτουργία του είναι "The Bridge to the Augmented Web.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Dapplets

Λήψη αρχείων επέκτασης 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:\/\/*\/*"
    ]
}