Etsy Heart Exchanger

Tool for automatic exchanging of item views and hearts.

Etsy Heart Exchanger란 무엇입니까?

Etsy Heart Exchanger은(는) https://heartexchanger.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Tool for automatic exchanging of item views and hearts."입니다.

확장 프로그램 스크린샷

screenshot

Etsy Heart Exchanger 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        THIS PROGRAM IS FREE, DO NOT PURCHASE IT FROM ANYBODY.
IT DOES NOT SHOW ADS, NOR SELLS YOUR DATA. IT COMPLETELY RELIES ON DONATIONS AS SOURCE OF FUNDS.

Important to understand:

 1. This extension will take over the first tab of your browser, when it is turned ON.

 2. Works similar to Favathon, only it's automatic.

 3. People that you exchange faves with are actual users of the extension.

 4. Does not gather any private info. No evil purpose or intentions.

 5. It is not affiliated with Etsy. If Etsy has objection we either make it comply with their requirements or we shut it down.

 6. May not be perfect as this is just a hobby project. Your input is appreciated.


----
How does it work?
Configuring
The extension collects your already public listings information, and temporarily stores on server. Configuring is done once in every 12h. You can see when it configured last in the bottom left corner.


Exchanging hearts
The extension connects to its server and requests someone else's listing. It will then favorite that listing. If that listing is successfully faved, some user now owes you a fave. You are now prioritized to receive a fave back.

It's automatic
The point of this tool is to save time. It does what you would have otherwise done. It does its work in separate tab, so you can even continue working on something else, or leave the computer.


Dashboard
On the Dashboard you can see:
● Counter of the automatic and manual faves you have given during the current hour. Etsy has set a limit of 300 faves per hour and we also indicate the remaining amount of faves for the current hour.
● Incoming and outgoing faves counters for each of HeartExchanger's games. These are stats for the whole day, starting from Etsy midnight (New York time).


Games
Currently, there are three types of games implemented: Favathon, Searchathon and Shop faves.

1. Favathon has "direct" source of traffic. Listings are reached directly through their URL. You get one view and one fave daily for each listing, by each user.

2. Searchathon traffic comes through searching for the listing. There are few steps to complete searchathon: enter search phrase, click search, locate listing, open it and fave it.
It is believed that this game will bring much more popularity to a listing than Favathon.
Searchathon will not click on promoted listings. There is possibility this check might fail, in case of Etsy changing the page content (code which is parsed by extension). It will be fixed as soon as I notice, but still, it is recommended to not set high daily promotion budget.

3. Shop faves will bring favorites to your shop.


https://www.heartexchanger.com
If you have further questions, feel free to contact me.                    

확장 프로그램 기본 정보

이름 Etsy Heart Exchanger Etsy Heart Exchanger
ID mpahgjigomjgbajfljiaaiemdcikhhfm
공식 URL https://chromewebstore.google.com/detail/etsy-heart-exchanger/mpahgjigomjgbajfljiaaiemdcikhhfm
설명 Tool for automatic exchanging of item views and hearts.
파일 크기 424 KB
설치 횟수 1,934
현재 버전 4.1.29
최근 업데이트 2023-08-16
출시 날짜 2020-04-19
평점 4.72/5 총 93 개의 평점
개발자 https://heartexchanger.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.heartexchanger.com
도움말 페이지 URL https://hex.heartexchanger.com/contact
개인정보 보호 정책 페이지 URL https://hex.heartexchanger.com/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Etsy Heart Exchanger",
    "description": "Tool for automatic exchanging of item views and hearts.",
    "version": "4.1.29",
    "homepage_url": "http:\/\/heartexchanger.com",
    "icons": {
        "256": "\/icons\/icon.png"
    },
    "externally_connectable": {
        "matches": [
            "*:\/\/*.heartexchanger.com\/*"
        ]
    },
    "browser_action": {
        "default_icon": "icons\/icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "webRequest",
        "webRequestBlocking",
        "storage",
        "*:\/\/*.etsy.com\/*",
        "*:\/\/*.heartexchanger.com\/*"
    ],
    "background": {
        "scripts": [
            "vendor.bundle.js",
            "background.bundle.js"
        ]
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/*.etsy.com\/*"
            ],
            "js": [
                "vendor.bundle.js",
                "etsy.bundle.js"
            ],
            "css": []
        },
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/*.heartexchanger.com\/*",
                "http:\/\/*.heartexchanger.com\/*"
            ],
            "js": [
                "vendor.bundle.js",
                "hex.bundle.js"
            ],
            "css": []
        }
    ],
    "web_accessible_resources": [
        "\/node_modules\/**\/*.*",
        "\/dist\/**\/*.js",
        "\/js\/*.js",
        "*.html",
        "icons\/*.*"
    ]
}