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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
        }
    ]
}