pfcrypto
cryptocurrency holdings updater
Что такое pfcrypto?
pfcrypto - это расширение Chrome, разработанное sclem, и его основная функция - "cryptocurrency holdings updater".
Снимки экрана расширения
Скачать файл CRX расширения pfcrypto
Скачайте файлы расширений pfcrypto в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Basic chrome extension to automatically update cryptocurrency holdings in Personal Capital (any coin: BTC, ETH, ZEC, etc.)
Instructions, documentation, and source code here:
https://github.com/sclem/pfcrypto/blob/master/README.md Основная информация о расширении
| Название | |
| ID | ceepigemlmlbphjhffddplfecgedhoeb |
| Официальный URL | https://chromewebstore.google.com/detail/pfcrypto/ceepigemlmlbphjhffddplfecgedhoeb |
| Описание | cryptocurrency holdings updater |
| Размер файла | 15.06 KB |
| Количество установок | 353 |
| Текущая Версия | 1.2.0 |
| Последнее Обновление | 2020-10-03 |
| Дата публикации | 2020-03-16 |
| Рейтинг | 4.75/5 Всего 20 оценок |
| Разработчик | sclem |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| URL страницы помощи | https://github.com/sclem/pfcrypto |
| URL страницы политики конфиденциальности | https://raw.githubusercontent.com/sclem/harborfreight-coupons-extension/master/PRIVACY |
| Поддерживаемые языки | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "pfcrypto",
"short_name": "personal finance crypto tracker",
"version": "1.2.0",
"manifest_version": 2,
"description": "cryptocurrency holdings updater",
"icons": {
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"permissions": [
"https:\/\/home.personalcapital.com\/page\/login\/app*",
"https:\/\/home.personalcapital.com\/api\/*",
"https:\/\/api.alternative.me\/v1\/ticker\/",
"https:\/\/api.blockcypher.com\/v1\/*",
"https:\/\/api.ethplorer.io\/getAddressInfo\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/home.personalcapital.com\/page\/login\/app*"
],
"js": [
"personalcapital.js"
],
"run_at": "document_idle"
}
]
} | |