P2P Trademanager

Trade CS:GO skins with ease without worrying about scammers sending duplicate/fake trades.

P2P Trademanager란 무엇입니까?

P2P Trademanager은(는) P2P Trades에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Trade CS:GO skins with ease without worrying about scammers sending duplicate/fake trades."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

P2P Trademanager 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        1) You will see a giant red warning if the trade sent for your deposit is sent from a different user or for the wrong skins. Completing a trade with the red banner will not credit you skins on the P2P trading site you are using under any circumstance.

The only time you want to complete a red banner trade is if you know this trade is for something else. (i.e. you are trading with a friend for something unrelated to P2P trading).

2) A green banner trade means you are safe to make the trade and you will be credited on the P2P trade site you are using. The trade should pop up automatically in most cases for you to accept. 

3) Enjoy!!

By using this add-on, you agree to the P2P Trade Manager Terms & Conditions available at https://www.wtfskins.com/tos                    

확장 프로그램 기본 정보

이름 P2P Trademanager P2P Trademanager
ID abpmhgifmihkfmihjkiknebekbemmcgo
공식 URL https://chromewebstore.google.com/detail/p2p-trademanager/abpmhgifmihkfmihjkiknebekbemmcgo
설명 Trade CS:GO skins with ease without worrying about scammers sending duplicate/fake trades.
파일 크기 163 KB
설치 횟수 901
현재 버전 0.4.0
최근 업데이트 2019-08-09
출시 날짜 2019-08-09
평점 2.00/5 총 5 개의 평점
개발자 P2P Trades
결제 유형 free
개인정보 보호 정책 페이지 URL https://www.wtfskins.com/tos
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "P2P Trademanager",
    "version": "0.4.0",
    "description": "Trade CS:GO skins with ease without worrying about scammers sending duplicate\/fake trades.",
    "manifest_version": 2,
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "background_script.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_popup": "index.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/api.tradeservice.io\/p2pExtensionApi\/v1\/login\/redirect*"
            ],
            "js": [
                "login_redirect_content_script.js"
            ]
        },
        {
            "matches": [
                "https:\/\/steamcommunity.com\/*\/tradeoffers*"
            ],
            "js": [
                "traderoffers_content_script.js"
            ],
            "css": [
                "tradeoffers_content.css"
            ]
        },
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/*.steamcommunity.com\/tradeoffer\/*"
            ],
            "js": [
                "tradeoffer_content_script.js"
            ],
            "css": [
                "tradeoffer_content.css"
            ]
        }
    ]
}