Etsy Sold!

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

Etsy Sold!란 무엇입니까?

Etsy Sold!은(는) Dillon Christensen에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Reveals the sale price of an out-of-stock Etsy listing."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Etsy Sold! 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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\/*"
    ]
}