Etsy Unfav-Fav

Play Favathons on Etsy easily. Just press the button to refav all listings on the current page of the thread.

Etsy Unfav-Favคืออะไร?

Etsy Unfav-Fav เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://etsygadget.com และคุณลักษณะหลักของมันคือ "Play Favathons on Etsy easily. Just press the button to refav all listings on the current page of the thread."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Etsy Unfav-Fav

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

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

                        For Etsy sellers who play Favathons daily or those who want to play them but have no much time, this extension could be the best solution to waste much less time doing it. As you know, it takes a lot of time to unfav and fav all listings manually - you need to scroll until the product, put the mouse on, click to unfav, wait until it's done and click one more time to fav it back, and repeat it as many time as many listings are published in the thread.
This extension makes it much easier - it adds one single button which appears on pages of Favathons and when you press it, it just do it all for you - it unfavs all favorited listings(and only them), and then favs them and those which wasn't faved earlier. After doing this, the extension sends you to the next page of Favathon automatically, so everything you need to do click that magic button once at the begining and let the extension do the rest - it will repeat the process through all listings on all pages of the thread until the last page or until you are out of Etsy's hourly limit of hearts (then it will wait until the next hour and continue automatically) . Also, don't forget that free "Etsy Hearts Counter" extension could help you controlling your hearts - just search it in Chrome Webstore.                    

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

ชื่อ Etsy Unfav-Fav Etsy Unfav-Fav
ID mibldfepmchoiladoannfblpilcphclh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/etsy-unfav-fav/mibldfepmchoiladoannfblpilcphclh
คำอธิบาย Play Favathons on Etsy easily. Just press the button to refav all listings on the current page of the thread.
ขนาดไฟล์ 137 KB
จำนวนการติดตั้ง 95
เวอร์ชันปัจจุบัน 2.16
อัปเดตครั้งล่าสุด 2021-01-19
วันที่เผยแพร่ 2020-04-26
คะแนน 3.90/5 รวมทั้งหมด 51 คะแนน
ผู้พัฒนา https://etsygadget.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://etsygadget.com/etsy_fav_unfav/
URL หน้าช่วยเหลือ http://etsygadget.com/etsy_fav_unfav/
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Etsy Unfav-Fav",
    "short_name": "Etsy Unfav-Fav",
    "description": "Play Favathons on Etsy easily. Just press the button to refav all listings on the current page of the thread.",
    "version": "2.16",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "*:\/\/*.etsy.com\/",
        "notifications"
    ],
    "optional_permissions": [],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "page_action": {
        "default_icon": {
            "19": "icon19.png",
            "38": "icon38.png"
        },
        "default_title": "EtsyGadget Unfav-Fav"
    },
    "homepage_url": "http:\/\/etsygadget.com\/etsy_unfav_fav\/",
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/community.etsy.com\/*\/*\/*"
            ],
            "css": [
                "styles.css"
            ],
            "js": [
                "jquery.js",
                "common.js",
                "init_sidebar.js",
                "thread_content.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/www.etsy.com\/shop\/*"
            ],
            "css": [
                "styles.css"
            ],
            "js": [
                "jquery.js",
                "common.js",
                "init_sidebar.js",
                "shop_content.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/*.etsy.com\/listing\/*",
                "*:\/\/*.etsy.com\/*\/listing\/*"
            ],
            "css": [
                "styles.css"
            ],
            "js": [
                "jquery.js",
                "common.js",
                "listing_content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        "icon19.png"
    ]
}