Path of Exile MTX shop filter
Filter capability for the Path of Exile shop
Path of Exile MTX shop filter란 무엇입니까?
Path of Exile MTX shop filter은(는) David M에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Filter capability for the Path of Exile shop"입니다.
확장 프로그램 스크린샷
Path of Exile MTX shop filter 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension extends the microtransaction store for the online action rpg Path of Exile. One of my greatest gripes with their store is the fact that i can't easily search for stuff i want to buy, this extension aims to change that. The extension adds a small box to the bottom right of the store, where you can search for microtransactions on your current page, it will NOT work on the overview of store categories. You can also filter out microtransactions you already own (this only works on items like hideouts because you can only own one of them). I also added the functionality to filter out microtransactions you can't afford! All the information this extension needs is extracted from the shop page, the extension ONLY runs locally and does NOT communicate with any external party whatsoever. Path of Exile is a free online-only action RPG made by Grinding Gear Games in New Zealand, i am not assiociated with Grinding Gear Games nor do i own any rights.
확장 프로그램 기본 정보
이름 | |
ID | ofdaecloibpdalkpanilogjhghfcmkca |
공식 URL | https://chrome.google.com/webstore/detail/path-of-exile-mtx-shop-fi/ofdaecloibpdalkpanilogjhghfcmkca |
설명 | Filter capability for the Path of Exile shop |
파일 크기 | 42.37 KB |
설치 횟수 | 36 |
현재 버전 | 1.0.0 |
최근 업데이트 | 2022-07-19 |
출시 날짜 | 2019-09-18 |
개발자 | David M |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Path of Exile MTX shop filter", "version": "1.0.0", "description": "Filter capability for the Path of Exile shop", "manifest_version": 2, "permissions": [ "https:\/\/www.pathofexile.com\/shop\/*" ], "web_accessible_resources": [ "filterbar.html" ], "content_scripts": [ { "matches": [ "https:\/\/www.pathofexile.com\/shop\/*" ], "css": [ "filterbar.css" ], "js": [ "jquery-3.4.1.min.js", "main.js" ] } ], "content_security_policy": "script-src 'self'; object-src 'self';", "icons": { "48": "icon48.png", "128": "icon128.png" } } |