Forgotten Mods
A tool for augmenting poe.trade experience. See official forum thread at https://www.pathofexile.com/forum/view-thread/1164052
Forgotten Mods란 무엇입니까?
Forgotten Mods은(는) https://sites.google.com/site/thirdyderivera에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A tool for augmenting poe.trade experience. See official forum thread at https://www.pathofexile.com/forum/view-thread/1164052"입니다.
확장 프로그램 스크린샷
Forgotten Mods 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Forgotten Mods is a free and open source chrome extension made for the Free to Play ARPG game called Path of Exile. This extension enhances the website called poe.trade by augmenting more details to it's search results. When you do a search with poe.trade, the tool runs automatically and you'll see some valuable information. Current Features: 1. Displays whether the mod is a prefix/suffix (in red or blue). 2. Displays the Tier Level of the Mod. 3. Displays the Name of the affix, neat huh. This is activated on mouse hover. 4. Automatically generate WTB (Want to buy) message for easier trading process. This tool is completely free and open-source. See Github project: https://github.com/thirdy/forgotten-mods/ See Path of exile forum thread: https://www.pathofexile.com/forum/view-thread/1164052
확장 프로그램 기본 정보
이름 | Forgotten Mods |
ID | iejmnlppimjeddnpfiljelhloaelogao |
공식 URL | https://chromewebstore.google.com/detail/forgotten-mods/iejmnlppimjeddnpfiljelhloaelogao |
설명 | A tool for augmenting poe.trade experience. See official forum thread at https://www.pathofexile.com/forum/view-thread/1164052 |
파일 크기 | 13.75 KB |
설치 횟수 | 585 |
현재 버전 | 0.8.2 |
최근 업데이트 | 2015-02-09 |
출시 날짜 | 2015-02-09 |
평점 | 4.94/5 총 18 개의 평점 |
개발자 | https://sites.google.com/site/thirdyderivera |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://www.pathofexile.com/forum/view-thread/1164052 |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Forgotten Mods", "version": "0.8.2", "description": "A tool for augmenting poe.trade experience. See official forum thread at https:\/\/www.pathofexile.com\/forum\/view-thread\/1164052", "author": "ManicCompression", "minimum_chrome_version": "17", "icons": { "128": "forgotten-mods-icon.png" }, "browser_action": { "default_icon": "forgotten-mods-icon.png", "default_popup": "popup.html" }, "options_page": "options.html", "background": { "page": "background.html" }, "permissions": [ "http:\/\/www.poe.trade\/*", "http:\/\/poe.trade\/*", "webRequest", "storage" ], "web_accessible_resources": [ "contentscript.js" ], "content_scripts": [ { "matches": [ "http:\/\/poe.trade\/search\/*", "http:\/\/www.poe.trade\/search\/*" ], "js": [ "contentscript.js" ], "run_at": "document_idle" } ] } |