ForgeCommander Integration

Connects your Forge of Empires session with your ForgeCommander session and optionally records your statistic data to ForgeCommander

ما هو ForgeCommander Integration؟

ForgeCommander Integration هو إضافة Chrome تم تطويرها بواسطة https://www.forgecommander.com، والميزة الرئيسية لها هي "Connects your Forge of Empires session with your ForgeCommander session and optionally records your statistic data to ForgeCommander".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة ForgeCommander Integration

قم بتنزيل ملفات الامتداد ForgeCommander Integration بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        When using ForgeCommander.com, this extension allows you to optionally collect FoE statistic data without making requests to or interfering with FoE. Unlocking the full potential of your FoE experience!

The statistic information can help you managing your guild, or relationships with friends and neighbors by providing you some key data points like:
  - Aiding, Trading, and Tavern sitting counts for each player in your neighborhood, 
    guild or friends
  - Identifying your mates or friends era's
  - Determining what greatbuildings your neighbors, mates or friends are working on 
    recently and how many levels they have achieved
  - Your guild treasury trends, contributions, expenditures 
  - City output statistics
  - And more!

ForgeCommander also brings along additional features
  - Direct messaging chat across worlds and servers with other FoE players
  - Multiple FoE world gameplay with easy tab switching between worlds
  - Much more player, guild and greatbuilding ranking data and options for seeing who 
    is the best at which category
  - Great Building leveling tools
  - Great building snipe calculations
  - Guild, private and public chatrooms to help you keep your mates and friends 
    organized and intune with what is happening on your world while they might be 
    playing in a different world at the time
  - Profile management
  - Other tools to help you manage resources or trends and more!

Get started over at ForgeCommander.com by signing up today!                    

معلومات أساسية عن التمديد

الاسم ForgeCommander Integration ForgeCommander Integration
ID mfdeccgkoldiahiohijhlnkgjbofohip
عنوان URL الرسمي https://chromewebstore.google.com/detail/forgecommander-integratio/mfdeccgkoldiahiohijhlnkgjbofohip
الوصف Connects your Forge of Empires session with your ForgeCommander session and optionally records your statistic data to ForgeCommander
حجم الملف 27.47 KB
عدد التثبيتات 1,172
النسخة الحالية 1.107
آخر تحديث 2021-07-19
تاريخ النشر 2020-06-30
تقييم 4.20/5 مجموع تقييمات 5
المطور https://www.forgecommander.com
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://forgecommander.com
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ForgeCommander Integration",
    "short_name": "ForgeCommander",
    "description": "Connects your Forge of Empires session with your ForgeCommander session and optionally records your statistic data to ForgeCommander",
    "author": "ForgeCommander.com",
    "icons": {
        "16": "icon16.png",
        "24": "icon24.png",
        "48": "icon48.png",
        "64": "icon64.png",
        "128": "icon128.png"
    },
    "homepage_url": "https:\/\/forgecommander.com",
    "version": "1.107",
    "permissions": [
        "cookies",
        "webRequest",
        "webRequestBlocking",
        "*:\/\/forgecommander.com\/",
        "*:\/\/*.forgeofempires.com\/game\/index*",
        "*:\/\/*.forgeofempires.com\/page\/"
    ],
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "*:\/\/*.forgeofempires.com\/page\/"
            ],
            "js": [
                "foe_page_inject.js"
            ],
            "all_frames": true
        },
        {
            "run_at": "document_start",
            "matches": [
                "*:\/\/forgecommander.com\/",
                "*:\/\/forgecommander.com\/index*"
            ],
            "js": [
                "fc_index_inject.js"
            ],
            "all_frames": true
        },
        {
            "run_at": "document_end",
            "matches": [
                "*:\/\/*.forgeofempires.com\/game\/index*"
            ],
            "js": [
                "foe_game_index_inject.js"
            ],
            "all_frames": true
        },
        {
            "run_at": "document_start",
            "matches": [
                "*:\/\/*.forgeofempires.com\/*",
                "*:\/\/forgeofempires.com\/*"
            ],
            "js": [
                "foe_secure_cookies_inject.js"
            ],
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "web_accessible_resources": [
        "foe_page.js",
        "foe_game_index.js",
        "foe_secure_cookies.js",
        "fc_index.js"
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/forgecommander.com\/",
            "*:\/\/forgecommander.com\/index*"
        ]
    }
}