PlutusDex Enhancer
Extension to add community based client-side features to PlutusDex
什么是PlutusDex Enhancer?
PlutusDex Enhancer是由Breaking IT - Sebastian Stohr开发的Chrome扩展程序,该扩展的主要功能是“Extension to add community based client-side features to PlutusDex”。
扩展截图
下载PlutusDex Enhancer扩展crx文件
下载PlutusDex Enhancer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Adds csv download of the Banking statement, Pluton rewards, Crypto orders, Withdrawals and Transactions to the Plutus web app.
🚨 ⚠️ This project is no longer under active development. ⚠️ 🚨 扩展基本信息
| 名称 | |
| ID | necjdfandaodcoeagkacmlapednbihgl |
| 官方URL | https://chromewebstore.google.com/detail/plutusdex-enhancer/necjdfandaodcoeagkacmlapednbihgl |
| 简介 | Extension to add community based client-side features to PlutusDex |
| 文件大小 | 146 KB |
| 安装次数 | 937 |
| 当前版本 | 0.8.3 |
| 更新时间 | 2023-02-04 |
| 上架时间 | 2022-06-08 |
| 评分 | 4.83/5 共6次评分 |
| 开发者 | Breaking IT - Sebastian Stohr |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://dex.plutus.link/ |
| 帮助页面URL | https://gitlab.com/_superhero1/plutusdex-enhancer/-/issues |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "PlutusDex Enhancer",
"description": "Extension to add community based client-side features to PlutusDex",
"version": "0.8.3",
"manifest_version": 3,
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "\/images\/icon16.png",
"19": "\/images\/icon19.png",
"32": "\/images\/icon32.png",
"38": "\/images\/icon38.png",
"48": "\/images\/icon48.png",
"128": "\/images\/icon128.png"
}
},
"content_scripts": [
{
"matches": [
"https:\/\/dex.plutus.it\/dashboard\/*"
],
"js": [
"content.js"
]
}
],
"permissions": [
"activeTab",
"tabs"
],
"icons": {
"16": "\/images\/icon16.png",
"19": "\/images\/icon19.png",
"32": "\/images\/icon32.png",
"38": "\/images\/icon38.png",
"48": "\/images\/icon48.png",
"128": "\/images\/icon128.png"
}
} | |