Fallen London Goat Farmer's Extension

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

Was ist Fallen London Goat Farmer's Extension?

Fallen London Goat Farmer's Extension ist eine Chrome-Erweiterung, die von Gallmarch Industries entwickelt wurde, und ihr Hauptmerkmal ist "This extension calculates and displays your total wealth each time you visit the Bazaar page in Fallen London.".

Erweiterungsscreenshots

screenshot

Fallen London Goat Farmer's Extension-Erweiterungs-CRX-Datei herunterladen

Laden Sie Fallen London Goat Farmer's Extension-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Fallen London Goat Farmer's Extension Fallen London Goat Farmer's Extension
ID biefkddpeaninjbkipkgnncpdlbddkfl
Offizielle URL https://chromewebstore.google.com/detail/fallen-london-goat-farmer/biefkddpeaninjbkipkgnncpdlbddkfl
Beschreibung This extension calculates and displays your total wealth each time you visit the Bazaar page in Fallen London.
Dateigröße 199 KB
Installationsanzahl 915
Aktuelle Version 4.0.1
Letztes Update 2019-08-07
Veröffentlichungsdatum 2019-08-07
Bewertung 5.00/5 Insgesamt 17 Bewertungen
Entwickler Gallmarch Industries
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
        }
    ]
}