FOE Power Tools
A set of tools to manage your Forege of Empires city.
FOE Power Tools란 무엇입니까?
FOE Power Tools은(는) https://foepowertools.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A set of tools to manage your Forege of Empires city."입니다.
확장 프로그램 스크린샷
FOE Power Tools 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
FOE Power Tools is a must have browser extension that will bring your Forge of Empires in-game information to you. Stay on top of your forge point contributions to other buildings, get customized city production reports, and see what to expect from your Alcatraz collections. These are just a few of the tools that will help unlock the full potential of your Forge of Empires city.
확장 프로그램 기본 정보
이름 | |
ID | apicdfpbepfbbgnikmfdbghibbkdeihn |
공식 URL | https://chromewebstore.google.com/detail/foe-power-tools/apicdfpbepfbbgnikmfdbghibbkdeihn |
설명 | A set of tools to manage your Forege of Empires city. |
파일 크기 | 65.96 KB |
설치 횟수 | 2,990 |
현재 버전 | 1.2 |
최근 업데이트 | 2020-07-02 |
출시 날짜 | 2020-07-01 |
평점 | 3.02/5 총 43 개의 평점 |
개발자 | https://foepowertools.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://www.foepowertools.com |
도움말 페이지 URL | https://www.foepowertools.com/faq |
개인정보 보호 정책 페이지 URL | https://foepowertools.com/privacy-policy |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "FOE Power Tools", "description": "A set of tools to manage your Forege of Empires city.", "version": "1.2", "options_page": "common\/options.html", "content_scripts": [ { "run_at": "document_end", "matches": [ "https:\/\/*.forgeofempires.com\/game\/index*" ], "js": [ "script.js" ] } ], "browser_action": { "default_icon": { "16": "common\/img\/Icon(16x16).png", "48": "common\/img\/Icon(48x48).png", "128": "common\/img\/Logo_Final(128x128).png" }, "default_title": "FOE Power Tools", "default_popup": "common\/popup.htm" }, "background": { "scripts": [ "background.js" ] }, "externally_connectable": { "matches": [ "https:\/\/*.forgeofempires.com\/game\/index*", "https:\/\/foepowertools.com\/*" ] }, "icons": { "16": "common\/img\/Icon(16x16).png", "48": "common\/img\/Icon(48x48).png", "128": "common\/img\/Logo_Final(128x128).png" }, "web_accessible_resources": [ "common\/img\/*.png" ] } |