Unicorn Wallet
Wallet for Algorand and other crypto currencies
Что такое Unicorn Wallet?
Unicorn Wallet - это расширение Chrome, разработанное Team Nova Mainnet, и его основная функция - "Wallet for Algorand and other crypto currencies".
Снимки экрана расширения
Скачать файл CRX расширения Unicorn Wallet
Скачайте файлы расширений Unicorn Wallet в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Wallet for Novarand and other crypto currencies Основная информация о расширении
| Название | |
| ID | knpiaihaegaehhijanilbehepceokehf |
| Официальный URL | https://chromewebstore.google.com/detail/unicorn-wallet/knpiaihaegaehhijanilbehepceokehf |
| Описание | Wallet for Algorand and other crypto currencies |
| Размер файла | 6.56 MB |
| Количество установок | 27 |
| Текущая Версия | 0.0.0.3 |
| Последнее Обновление | 2022-12-09 |
| Дата публикации | 2022-09-21 |
| Разработчик | Team Nova Mainnet |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| URL страницы политики конфиденциальности | https://bubbly-api.shop/share/unicornWallet_privacyPolicy |
| Поддерживаемые языки | ko |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Unicorn Wallet",
"version": "0.0.0.3",
"homepage_url": "http:\/\/localhost:8100",
"description": "Wallet for Algorand and other crypto currencies",
"icons": {
"16": "assets\/icon\/unicorn(3).png",
"32": "assets\/icon\/unicorn(3).png"
},
"manifest_version": 3,
"background": {
"service_worker": "background.js",
"type": "module"
},
"action": {
"default_icon": {
"16": "assets\/icon\/unicorn(3).png",
"32": "assets\/icon\/unicorn(3).png"
},
"default_title": "UnicornWallet",
"default_popup": "index.html"
},
"content_scripts": [
{
"matches": [
"http:\/\/localhost\/*",
"https:\/\/piggle-dao.shop\/*"
],
"js": [
"content-script.js"
],
"run_at": "document_start",
"all_frames": true
}
],
"permissions": [
"storage"
],
"host_permissions": [
"chrome-extension:\/\/*\/*",
"file:\/\/*\/*",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"externally_connectable": {
"matches": [
"file:\/\/*\/*",
"http:\/\/*\/*",
"https:\/\/*\/*"
]
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'; script-src-elem 'self'",
"sandbox": "sandbox allow-scripts; script-src 'self' 'unsafe-eval'"
}
} | |