Efin
Efin extension
Efin란 무엇입니까?
Efin은(는) Dextech AG에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Efin extension"입니다.
확장 프로그램 스크린샷
Efin 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
It's a Google Chrome module installed in the desktop browser, built with TypeScript and Javascript to create a small download-size app. It allows access to the eFIN's features from the Google Chrome browser, including lightweight wallets for multiple blockchains without using heavy local nodes, eFIN Dex, fiat on/off ramp, and Bridge; it also connects with dApps and interacts with their functionalities.
The extension enables users to:
Connect to 6 different blockchains (BITCOIN, ETHEREUM, BINANCE SMART CHAIN, POLYGON, NIMIQ, ZILLIQA).
Send and receive transactions using lightweight wallets.
Swap tokens in the eFIN Dex.
Participate in the liquidity pools for the eFIN Dex.
Manage their LP tokens from eFIN Dex.
Bridge BTC to BSC network using renBTC and vice-versa.
Connect banking, Credit Cards, and other payment methods to the blockchain with SupperSimpleSwap and Onramper (coming soon) to buy and sell crypto.
Connect with dApps.
Sign messages on dApps.
Approved smart contract interactions. 확장 프로그램 기본 정보
| 이름 | |
| ID | oipfabpfaklengibadofciocpilbfkeh |
| 공식 URL | https://chromewebstore.google.com/detail/efin/oipfabpfaklengibadofciocpilbfkeh |
| 설명 | Efin extension |
| 파일 크기 | 23.57 MB |
| 설치 횟수 | 41 |
| 현재 버전 | 1.21.0 |
| 최근 업데이트 | 2022-11-24 |
| 출시 날짜 | 2022-10-08 |
| 평점 | 5.00/5 총 2 개의 평점 |
| 개발자 | Dextech AG |
| 이메일 | [email protected] |
| 결제 유형 | in_app |
| 확장 프로그램 웹 사이트 | https://efin.com/ |
| 도움말 페이지 URL | https://www.efin.com/contact |
| 개인정보 보호 정책 페이지 URL | https://www.efin.com/terms |
| 지원되는 언어 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"commands": {
"_execute_browser_action": {
"suggested_key": {
"windows": "Alt+Shift+M",
"mac": "Alt+Shift+M",
"chromeos": "Alt+Shift+M",
"linux": "Alt+Shift+M"
}
}
},
"content_scripts": [
{
"matches": [
"file:\/\/*\/*",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"globalthis.js",
"contentscript.js"
],
"run_at": "document_start",
"all_frames": true
}
],
"description": "Efin extension",
"icons": {
"16": "images\/favicon-16x16.png",
"32": "images\/favicon-32x32.png",
"48": "images\/android-icon-48x48.png",
"64": "images\/android-icon-48x48.png",
"128": "images\/android-icon-144x144.png",
"512": "images\/ms-icon-310x310.png"
},
"manifest_version": 3,
"name": "Efin",
"short_name": "Efin",
"web_accessible_resources": [
{
"resources": [
"inpage.js"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
]
}
],
"action": {
"default_icon": {
"16": "images\/favicon-16x16.png",
"32": "images\/favicon-32x32.png",
"48": "images\/android-icon-48x48.png",
"64": "images\/android-icon-48x48.png",
"128": "images\/android-icon-144x144.png",
"512": "images\/ms-icon-310x310.png"
},
"default_title": "Efin",
"default_popup": "popup.html"
},
"author": "Efin",
"background": {
"service_worker": "app-init.js"
},
"externally_connectable": {
"ids": [
"*"
]
},
"permissions": [
"activeTab",
"clipboardWrite",
"notifications",
"storage",
"unlimitedStorage"
],
"minimum_chrome_version": "88",
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
},
"version": "1.21.0"
} | |