FOE Power Tools
A set of tools to manage your Forege of Empires city.
Wat is FOE Power Tools?
FOE Power Tools is een Chrome-extensie ontwikkeld door https://foepowertools.com, en de belangrijkste functie is "A set of tools to manage your Forege of Empires city.".
Extensie Screenshots
Download het CRX-bestand van de extensie FOE Power Tools
Download FOE Power Tools-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | |
ID | apicdfpbepfbbgnikmfdbghibbkdeihn |
Officiële URL | https://chromewebstore.google.com/detail/foe-power-tools/apicdfpbepfbbgnikmfdbghibbkdeihn |
Beschrijving | A set of tools to manage your Forege of Empires city. |
Bestandsgrootte | 65.96 KB |
Aantal Installaties | 2,990 |
Huidige Versie | 1.2 |
Laatst Bijgewerkt | 2020-07-02 |
Publicatiedatum | 2020-07-01 |
Beoordeling | 3.02/5 Totaal 43 Beoordelingen |
Ontwikkelaar | https://foepowertools.com |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://www.foepowertools.com |
Help Pagina-URL | https://www.foepowertools.com/faq |
URL van de Privacybeleid Pagina | https://foepowertools.com/privacy-policy |
Ondersteunde Talen | 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" ] } |