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 |
| 官方網址 | 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"
}
} | |