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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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"
    }
}