P2P Trademanager
Trade CS:GO skins with ease without worrying about scammers sending duplicate/fake trades.
¿Qué es P2P Trademanager?
P2P Trademanager es una extensión de Chrome desarrollada por P2P Trades, y su función principal es "Trade CS:GO skins with ease without worrying about scammers sending duplicate/fake trades.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión P2P Trademanager
Descarga archivos de extensión P2P Trademanager en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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
Información Básica de la Extensión
Nombre | P2P Trademanager |
ID | abpmhgifmihkfmihjkiknebekbemmcgo |
URL Oficial | https://chromewebstore.google.com/detail/p2p-trademanager/abpmhgifmihkfmihjkiknebekbemmcgo |
Descripción | Trade CS:GO skins with ease without worrying about scammers sending duplicate/fake trades. |
Tamaño del Archivo | 163 KB |
Cantidad de Instalaciones | 901 |
Versión Actual | 0.4.0 |
Última Actualización | 2019-08-09 |
Fecha de Publicación | 2019-08-09 |
Calificación | 2.00/5 Total de 5 Calificaciones |
Desarrollador | P2P Trades |
Tipo de Pago | free |
URL de la Página de Política de Privacidad | https://www.wtfskins.com/tos |
Idiomas Soportados | 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" ] } ] } |