PVU Profit & Price Tool

This tool will help you convert different tokens related to PvU, provides live profit PVU/month within the marketplace.

PVU Profit & Price Toolคืออะไร?

PVU Profit & Price Tool เป็นส่วนขยายของ Chrome ที่พัฒนาโดย msqar และคุณลักษณะหลักของมันคือ "This tool will help you convert different tokens related to PvU, provides live profit PVU/month within the marketplace."

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย PVU Profit & Price Tool

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

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

                        A great tool for Plants vs Undead that will allow you to:
1) Whenever you're in the marketplace, it will display the conversion automatically when it comes to PVU per month of each of the plants so you don't need to calculate yourself.
2) Through the extension icon, you can also two-way convert PVU to LE, LE to PVU and BNB to PVU at current market prices.
3) You can also set the exchange prices for PVU->LE and LE->PVU completely custom and applies right away on marketplace.

Patch Notes v1.0.5
   - Added also an input for PVU to LE price as it's a different exchange rate. Default at the moment is 1 PVU:105 LE when selling, but it might change in future.

Patch Notes v1.0.4
   - Fixed issue where code wasn't executing due to imprecise path match.

Patch Notes v1.0.3
   - Added input to select the PVU:LE ratio as it's constantly changing
   - Added new way to calculate profit by amount of seeds you can buy per month with that specific plant.
   - Fixed overall bugs.

Patch Notes v1.0.2: 
   - Added BNB to PVU conversion.

Patch Notes v1.0.1: 
   - Fixed bug where it wasn't loading properly the data on marketplace and had to refresh multiple times in order to display it.                    

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

ชื่อ PVU Profit & Price Tool PVU Profit & Price Tool
ID opmkpjniaogoadhmhemjabjcjompanaf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/pvu-profit-price-tool/opmkpjniaogoadhmhemjabjcjompanaf
คำอธิบาย This tool will help you convert different tokens related to PvU, provides live profit PVU/month within the marketplace.
ขนาดไฟล์ 22.16 KB
จำนวนการติดตั้ง 244
เวอร์ชันปัจจุบัน 1.0.5
อัปเดตครั้งล่าสุด 2021-09-29
วันที่เผยแพร่ 2021-09-21
คะแนน 4.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา msqar
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "PVU Profit & Price Tool",
    "version": "1.0.5",
    "description": "This tool will help you convert different tokens related to PvU, provides live profit PVU\/month within the marketplace.",
    "manifest_version": 2,
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/marketplace.plantvsundead.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "PVU Tool"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "pvu-16.png",
        "48": "pvu-48.png",
        "128": "pvu-128.png"
    }
}