UNIHelper

Slightly improving uniswap UI/UX

UNIHelperคืออะไร?

UNIHelper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ron.suhodrev และคุณลักษณะหลักของมันคือ "Slightly improving uniswap UI/UX"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย UNIHelper

ดาวน์โหลดไฟล์ส่วนขยาย UNIHelper ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Uniswap makes it very hard to figure out which pools are the most profitable.
UNIHelper improves the experience of browsing 
by adding a new "Min. APR" column (APR stands for annual profit rate).
Now you will be able to see at a glance which pools are worth your time.

Just install the extension and the column will appear.

In the future, other UX improvement may be incorporated into the extension.
Checkout the source code at https://github.com/maxandron/unihelper 

## APR Calculation

The estimation is based on the last 7 days, by using the data already inside the
table and just running the calculation.

The calculation formula is roughly:
`apr = (((weeklyVolume * fees) / tvl) / 7) * 365`

This is a rough approximation of the **minimum** APR based only on the last
seven days.

The actual APR will be different because:

* It will be affected by the price range you choose
* It will be affected by the changes in volume
* It will be affected by the changes in TVL
* By the amount of money you stake relative to the TVL

## Caveats

The data to calculate the APR is taken from the table itself.
That means that if Uniswap shows incorrect data, the APR will be calculated
incorrectly as well.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ UNIHelper UNIHelper
ID kmngpedmplhoikamacadipoimanmhnno
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/unihelper/kmngpedmplhoikamacadipoimanmhnno
คำอธิบาย Slightly improving uniswap UI/UX
ขนาดไฟล์ 24.71 KB
จำนวนการติดตั้ง 133
เวอร์ชันปัจจุบัน 0.0.3
อัปเดตครั้งล่าสุด 2021-08-08
วันที่เผยแพร่ 2021-06-11
ผู้พัฒนา ron.suhodrev
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/maxandron/unihelper
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "UNIHelper",
    "version": "0.0.3",
    "description": "Slightly improving uniswap UI\/UX",
    "permissions": [
        "tabs"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/info.uniswap.org\/*"
            ],
            "run_at": "document_end",
            "js": [
                "helpers.js",
                "config.js",
                "unihelper.js"
            ]
        }
    ],
    "icons": {
        "16": "images\/16.png",
        "32": "images\/32.png",
        "48": "images\/48.png",
        "128": "images\/128.png"
    },
    "manifest_version": 3
}