Etsy Sold!

Reveals the sale price of an out-of-stock Etsy listing.

Etsy Sold!คืออะไร?

Etsy Sold! เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Dillon Christensen และคุณลักษณะหลักของมันคือ "Reveals the sale price of an out-of-stock Etsy listing."

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

screenshot
screenshot
screenshot

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

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

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

                        Are you curious what an item sold for on Etsy? 
With this new extension, every out-of-stock item will immediately show you the sold price in red.
No buttons, no instructions, just install and let it do its thing!

"This is a much needed tool for Etsy shop owners.  Sometimes it's hard to know what to price your items at, so researching what similar ones have sold for is really beneficial and helpful!" - The Gilded Lion

**Latest Updates**
* Updated support for non-US locales, now prices don't N/A but sometimes aren't localized (so partial improvement)
* Always logs found price in the event page structure prevents display
* Expanded URLs to include non-US stores (e.g. dk-en/listing)
* Added new feature for viewing a store's sold page. Now when viewing a sold archive for a store, prices will attempt to load automatically on the individual tiles and then sum the sold prices for the current page's results in the header.
* Updated to support two types of sold-store page document structures.                    

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

ชื่อ Etsy Sold! Etsy Sold!
ID ogkbkoekfaofdlijmahfapjfojckiikf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/etsy-sold/ogkbkoekfaofdlijmahfapjfojckiikf
คำอธิบาย Reveals the sale price of an out-of-stock Etsy listing.
ขนาดไฟล์ 52.23 KB
จำนวนการติดตั้ง 2,157
เวอร์ชันปัจจุบัน 1.5.2
อัปเดตครั้งล่าสุด 2021-12-24
วันที่เผยแพร่ 2020-02-13
คะแนน 2.95/5 รวมทั้งหมด 20 คะแนน
ผู้พัฒนา Dillon Christensen
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://github.com/dillonchr/etsy-sold-crx/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Etsy Sold!",
    "description": "Reveals the sale price of an out-of-stock Etsy listing.",
    "version": "1.5.2",
    "manifest_version": 2,
    "browser_action": {
        "default_icon": "icon.png"
    },
    "icons": {
        "122": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.etsy.com\/listing\/*",
                "https:\/\/www.etsy.com\/*\/listing\/*"
            ],
            "js": [
                "etsy-sold-plugin.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/www.etsy.com\/shop\/*\/sold*",
                "https:\/\/www.etsy.com\/*\/shop\/*\/sold*"
            ],
            "js": [
                "store-sold.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "etsy-sold.js"
    ],
    "permissions": [
        "https:\/\/www.etsy.com\/listing\/*"
    ]
}