PlutusDex Enhancer
Extension to add community based client-side features to PlutusDex
Was ist PlutusDex Enhancer?
PlutusDex Enhancer ist eine Chrome-Erweiterung, die von Breaking IT - Sebastian Stohr entwickelt wurde, und ihr Hauptmerkmal ist "Extension to add community based client-side features to PlutusDex".
Erweiterungsscreenshots
PlutusDex Enhancer-Erweiterungs-CRX-Datei herunterladen
Laden Sie PlutusDex Enhancer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. ⚠️ 🚨 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | necjdfandaodcoeagkacmlapednbihgl |
| Offizielle URL | https://chromewebstore.google.com/detail/plutusdex-enhancer/necjdfandaodcoeagkacmlapednbihgl |
| Beschreibung | Extension to add community based client-side features to PlutusDex |
| Dateigröße | 146 KB |
| Installationsanzahl | 937 |
| Aktuelle Version | 0.8.3 |
| Letztes Update | 2023-02-04 |
| Veröffentlichungsdatum | 2022-06-08 |
| Bewertung | 4.83/5 Insgesamt 6 Bewertungen |
| Entwickler | Breaking IT - Sebastian Stohr |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://dex.plutus.link/ |
| Hilfeseite URL | https://gitlab.com/_superhero1/plutusdex-enhancer/-/issues |
| Unterstützte Sprachen | 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"
}
} | |