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ファイルをダウンロード
FOE Power Tools拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
Eメール | [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" ] } |