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 là gì?

Fallen London Goat Farmer's Extension là một tiện ích mở rộng Chrome được phát triển bởi Gallmarch Industries, và tính năng chính của nó là "This extension calculates and displays your total wealth each time you visit the Bazaar page in Fallen London.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Fallen London Goat Farmer's Extension

Tải xuống các tệp mở rộng Fallen London Goat Farmer's Extension 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

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Fallen London Goat Farmer's Extension Fallen London Goat Farmer's Extension
ID biefkddpeaninjbkipkgnncpdlbddkfl
URL Chính Thức https://chromewebstore.google.com/detail/fallen-london-goat-farmer/biefkddpeaninjbkipkgnncpdlbddkfl
Mô tả This extension calculates and displays your total wealth each time you visit the Bazaar page in Fallen London.
Kích Thước Tệp 199 KB
Số Lần Cài Đặt 915
Phiên Bản Hiện Tại 4.0.1
Cập Nhật Lần Cuối 2019-08-07
Ngày Phát Hành 2019-08-07
Đánh Giá 5.00/5 Tổng số 17 Đánh Giá
Nhà Phát Triển Gallmarch Industries
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}