Bob Extension
Chrome Extension for Handshake
Bob Extension란 무엇입니까?
Bob Extension은(는) https://kyokan.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Chrome Extension for Handshake"입니다.
확장 프로그램 스크린샷
Bob Extension 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
A Handshake wallet in your browser. Bob Extension runs a wallet in your extension, and enables DNS resolving through the Handshake DNS. It injects a Bob3 object into every website and allow dapps to interact with your wallet through a pop-up confirmation. Bob Extension will allow you to manage your Handshake TLDs, and enable you to login to dapps using your Handshake TLDs. https://github.com/kyokan/bob-extension
확장 프로그램 기본 정보
이름 | Bob Extension |
ID | ogcmjchbmdichlfelhmceldndgmgpcem |
공식 URL | https://chromewebstore.google.com/detail/bob-extension/ogcmjchbmdichlfelhmceldndgmgpcem |
설명 | Chrome Extension for Handshake |
파일 크기 | 5.91 MB |
설치 횟수 | 2,276 |
현재 버전 | 0.6.0 |
최근 업데이트 | 2022-09-22 |
출시 날짜 | 2021-05-06 |
평점 | 4.43/5 총 7 개의 평점 |
개발자 | https://kyokan.io |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://bobwallet.io/ |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Bob Extension", "description": "Chrome Extension for Handshake", "version": "0.6.0", "omnibox": { "keyword": "bob" }, "browser_action": { "default_icon": "icon-16.png", "default_popup": "popup.html" }, "background": { "scripts": [ "js\/backgroundPage.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "file:\/\/*\/*", "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/content.js" ], "run_at": "document_start", "all_frames": true } ], "icons": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "permissions": [ "tabs", "notifications", "http:\/\/*\/", "https:\/\/*\/", "webRequest", "webRequestBlocking", "proxy", "storage", "unlimitedStorage", " |