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
官方網址 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
電子郵箱 [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"
    }
}