Fallen London Goat Farmer's Extension

This extension calculates and displays your total wealth each time you visit the Bazaar page in Fallen London.

ما هو Fallen London Goat Farmer's Extension؟

Fallen London Goat Farmer's Extension هو إضافة Chrome تم تطويرها بواسطة Gallmarch Industries، والميزة الرئيسية لها هي "This extension calculates and displays your total wealth each time you visit the Bazaar page in Fallen London.".

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

screenshot

تحميل ملف CRX للإضافة Fallen London Goat Farmer's Extension

قم بتنزيل ملفات الامتداد Fallen London Goat Farmer's Extension بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        This extension calculates and displays your total wealth each time you visit the Bazaar page in Fallen London. It includes options to exclude certain items from the calculation.

This add-on is listed on the Fallen London Extension Whitelist: http://community.failbettergames.com/topic9506-fallen-london-extensions-whitelist.aspx                    

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

الاسم Fallen London Goat Farmer's Extension Fallen London Goat Farmer's Extension
ID biefkddpeaninjbkipkgnncpdlbddkfl
عنوان URL الرسمي https://chromewebstore.google.com/detail/fallen-london-goat-farmer/biefkddpeaninjbkipkgnncpdlbddkfl
الوصف This extension calculates and displays your total wealth each time you visit the Bazaar page in Fallen London.
حجم الملف 199 KB
عدد التثبيتات 915
النسخة الحالية 4.0.1
آخر تحديث 2019-08-07
تاريخ النشر 2019-08-07
تقييم 5.00/5 مجموع تقييمات 17
المطور Gallmarch Industries
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Fallen London Goat Farmer's Extension",
    "description": "This extension calculates and displays your total wealth each time you visit the Bazaar page in Fallen London.",
    "permissions": [
        "webRequest",
        "storage",
        "*:\/\/*.fallenlondon.com\/"
    ],
    "version": "4.0.1",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.fallenlondon.com\/*",
                "https:\/\/.fallenlondon.com\/*"
            ],
            "css": [
                "styles.css"
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_end"
        }
    ]
}