Waxpeer Extension

Extension that makes P2P possible

Waxpeer Extension란 무엇입니까?

Waxpeer Extension은(는) https://waxpeer.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Extension that makes P2P possible"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Waxpeer Extension 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        WAXPEER is a marketplace for safe and quick sales of skins using the p2p system (player to player). This extension is designed for secure trading and trade confirmation.

Functionality

Creating Steam api (to get information about transactions and automatic confirmation)
Generating trade – to automatically create a trade after purchasing your skins. You just have to confirm it on your phone
Auto Accept function. You can turn on or off the function of automatic gift acceptance.
Transaction confirmation function. By means of the Steam api key we get informed on whether the transaction is successfully completed or not. Please do not delete or change the Steam api key in order to avoid any errors.

You cannot sell skins on Waxpeer without installing this extension. It will safeguard you against the risk of fraud and make your sales on Waxpeer almost instant. All you have to do is to confirm the transaction on your phone.

Link:
https://about.waxpeer.com/
https://waxpeer.com/faq

UPD. 11/27/2020
Removed alarms permission
Improved websocket connection

UPD 05/22
Added ability to automatically cancel a trade

UPD 11/11
Correcting link for steam                    

확장 프로그램 기본 정보

이름 Waxpeer Extension Waxpeer Extension
ID pmfjgkjalfcnnipmgfkeipkbehecpjbk
공식 URL https://chromewebstore.google.com/detail/waxpeer-extension/pmfjgkjalfcnnipmgfkeipkbehecpjbk
설명 Extension that makes P2P possible
파일 크기 314 KB
설치 횟수 25,298
현재 버전 2.1.4
최근 업데이트 2024-02-12
출시 날짜 2020-03-06
평점 3.64/5 총 55 개의 평점
개발자 https://waxpeer.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://waxpeer.com
도움말 페이지 URL https://waxpeer.com/faq
개인정보 보호 정책 페이지 URL https://waxpeer.com/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Waxpeer Extension",
    "manifest_version": 3,
    "version": "2.1.4",
    "description": "Extension that makes P2P possible",
    "icons": {
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/steamcommunity.com\/*",
                "*:\/\/steampowered.com\/*"
            ],
            "js": [
                "src\/content\/steam-script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "action": {
        "default_title": "Waxpeer Extension",
        "default_popup": "src\/popup.html"
    },
    "minimum_chrome_version": "116",
    "background": {
        "service_worker": "src\/background.js"
    },
    "permissions": [
        "storage",
        "offscreen",
        "notifications",
        "declarativeNetRequestWithHostAccess"
    ],
    "host_permissions": [
        "https:\/\/waxpeer.com\/*",
        "*:\/\/steamcommunity.com\/*",
        "*:\/\/api.steampowered.com\/*"
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "https:\/\/waxpeer.com\/*"
            ],
            "resources": [
                "*.js",
                "public\/buy_pick.mp3"
            ]
        }
    ]
}