Alterdot Browser Extension

Redirects BlockchainDNS requests to IPFS and allows for simple wallet interaction.

Alterdot Browser Extensionとは何ですか?

Alterdot Browser ExtensionはAlterdotによって開発されたChromeの拡張機能で、その主な機能は「Redirects BlockchainDNS requests to IPFS and allows for simple wallet interaction.」です。

拡張機能のスクリーンショット

screenshot

Alterdot Browser Extension拡張機能のCRXファイルをダウンロード

Alterdot Browser Extension拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        The Alterdot browser extension is the main facilitator of our decentralized web built upon blockchain and IPFS. The extension allows for blockchain domain name resolution and limited wallet functionality which is realized with the help of an Alterdot node that is running locally. An IPFS gateway must also be available on your machine in order to achieve full decentralization. 

Even without local IPFS and Alterdot nodes, the browser extension will be able to resolve blockchain domains names as it will be using our own servers for domain resolution and a public IPFS gateway for accessing content.

Light wallet functionality will also be introduced in the future.                    

拡張機能の基本情報

名前 Alterdot Browser Extension Alterdot Browser Extension
ID ioblpebmfllgahknonobbkenomklplhn
公式URL https://chromewebstore.google.com/detail/alterdot-browser-extensio/ioblpebmfllgahknonobbkenomklplhn
説明 Redirects BlockchainDNS requests to IPFS and allows for simple wallet interaction.
ファイルサイズ 254 KB
インストール数 77
現在のバージョン 0.1.1
最終更新日 2021-10-21
公開日 2021-10-21
評価 5.00/5 合計 1 レビュー
開発者 Alterdot
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://alterdot.network/
ヘルプページのURL https://docs.alterdot.network/
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Alterdot Browser Extension",
    "version": "0.1.1",
    "description": "Redirects BlockchainDNS requests to IPFS and allows for simple wallet interaction.",
    "permissions": [
        "*:\/\/*\/*?q=.*",
        "*:\/\/*\/*?q=*.a*",
        "*:\/\/*\/*?q=*.adot*",
        "*:\/\/*.a\/*",
        "*:\/\/*.adot\/*",
        "webRequest",
        "webRequestBlocking",
        "storage"
    ],
    "background": {
        "scripts": [
            "common.js",
            "background.js"
        ]
    },
    "options_ui": {
        "page": "options\/options.html",
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "toolbar\/toolbar.js",
                "toolbar\/toolbar-init.js"
            ],
            "css": [
                "toolbar\/toolbar-init.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "toolbar\/toolbar.html",
        "toolbar\/toolbar.css"
    ],
    "browser_action": {
        "default_icon": "images\/alterdot128.png",
        "default_popup": "popup\/popup.html"
    },
    "icons": {
        "128": "images\/alterdot128.png",
        "256": "images\/alterdot256.png"
    }
}