Auctionoton: Auction House Prices for Wowhead

Display current Auction House price data for items on wowhead.com

Auctionoton: Auction House Prices for Wowheadคืออะไร?

Auctionoton: Auction House Prices for Wowhead เป็นส่วนขยายของ Chrome ที่พัฒนาโดย sjvispoel และคุณลักษณะหลักของมันคือ "Display current Auction House price data for items on wowhead.com"

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

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Auctionoton: Auction House Prices for Wowhead

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

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

                        This extension adds a new tooltip to items on wowhead.com (classic only)! It will show up-to-date Auction House price information for your selected server. You can select the region, server, and faction you want.                    

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

ชื่อ Auctionoton: Auction House Prices for Wowhead Auctionoton: Auction House Prices for Wowhead
ID ffflgkmjodhdladikaglbeofemhbojio
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/auctionoton-auction-house/ffflgkmjodhdladikaglbeofemhbojio
คำอธิบาย Display current Auction House price data for items on wowhead.com
ขนาดไฟล์ 335 KB
จำนวนการติดตั้ง 119
เวอร์ชันปัจจุบัน 5.0.0
อัปเดตครั้งล่าสุด 2024-03-01
วันที่เผยแพร่ 2020-06-10
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา sjvispoel
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/sandervspl/auctionoton
URL หน้าช่วยเหลือ https://github.com/sandervspl/auctionoton/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Auctionoton: Auction House Prices for Wowhead",
    "version": "5.0.0",
    "description": "Display current Auction House price data for items on wowhead.com",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/tbc.wowhead.com\/*",
                "https:\/\/wotlk.wowhead.com\/*",
                "https:\/\/wowhead.com\/wotlk\/*",
                "https:\/\/www.wowhead.com\/wotlk\/*",
                "https:\/\/wowhead.com\/classic\/*",
                "https:\/\/www.wowhead.com\/classic\/*"
            ],
            "js": [
                "index.js"
            ]
        },
        {
            "matches": [
                "https:\/\/tbc.wowhead.com\/*",
                "https:\/\/wotlk.wowhead.com\/*",
                "https:\/\/wowhead.com\/wotlk\/*",
                "https:\/\/www.wowhead.com\/wotlk\/*",
                "https:\/\/wowhead.com\/classic\/*",
                "https:\/\/www.wowhead.com\/classic\/*"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "index.js",
                "form.html"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": "static\/icon.png",
        "default_popup": "form.html",
        "default_title": "Auctionoton: Auction House Prices for Wowhead"
    },
    "options_ui": {
        "page": "form.html",
        "open_in_tab": true
    },
    "icons": {
        "16": "static\/icon-16.png",
        "32": "static\/icon-32.png",
        "48": "static\/icon-48.png",
        "128": "static\/icon-128.png"
    },
    "permissions": [
        "storage",
        "https:\/\/*.ngrok.io\/*",
        "https:\/\/5d9b-82-168-31-31.ngrok.io\/*",
        "https:\/\/auctionoton-edge-api-sandervspl.vercel.app\/api\/*",
        "https:\/\/auctionoton-edge-api.vercel.app\/api\/*",
        "https:\/\/auctionoton-api-valor.vercel.app\/api\/*",
        "https:\/\/auctionoton-api.vercel.app\/api\/*",
        "https:\/\/auctionoton-api.sandervspl.dev\/*"
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    }
}