FOE Power Tools
A set of tools to manage your Forege of Empires city.
FOE Power Tools là gì?
FOE Power Tools là một tiện ích mở rộng Chrome được phát triển bởi https://foepowertools.com, và tính năng chính của nó là "A set of tools to manage your Forege of Empires city.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng FOE Power Tools
Tải xuống các tệp mở rộng FOE Power Tools dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | apicdfpbepfbbgnikmfdbghibbkdeihn |
URL Chính Thức | https://chromewebstore.google.com/detail/foe-power-tools/apicdfpbepfbbgnikmfdbghibbkdeihn |
Mô tả | A set of tools to manage your Forege of Empires city. |
Kích Thước Tệp | 65.96 KB |
Số Lần Cài Đặt | 2,990 |
Phiên Bản Hiện Tại | 1.2 |
Cập Nhật Lần Cuối | 2020-07-02 |
Ngày Phát Hành | 2020-07-01 |
Đánh Giá | 3.02/5 Tổng số 43 Đánh Giá |
Nhà Phát Triển | https://foepowertools.com |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://www.foepowertools.com |
URL Trang Trợ Giúp | https://www.foepowertools.com/faq |
URL Trang Chính Sách Bảo Mật | https://foepowertools.com/privacy-policy |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |