Fallen London Goat Farmer's Extension

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

Co to jest Fallen London Goat Farmer's Extension?

Fallen London Goat Farmer's Extension to rozszerzenie Chrome opracowane przez Gallmarch Industries, a jego główną funkcją jest „This extension calculates and displays your total wealth each time you visit the Bazaar page in Fallen London.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Fallen London Goat Farmer's Extension

Pobierz pliki rozszerzeń Fallen London Goat Farmer's Extension w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Fallen London Goat Farmer's Extension Fallen London Goat Farmer's Extension
ID biefkddpeaninjbkipkgnncpdlbddkfl
Oficjalny URL https://chromewebstore.google.com/detail/fallen-london-goat-farmer/biefkddpeaninjbkipkgnncpdlbddkfl
Opis This extension calculates and displays your total wealth each time you visit the Bazaar page in Fallen London.
Rozmiar pliku 199 KB
Liczba instalacji 915
Aktualna Wersja 4.0.1
Ostatnia Aktualizacja 2019-08-07
Data Publikacji 2019-08-07
Ocena 5.00/5 Łącznie 17 Oceny
Deweloper Gallmarch Industries
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
        }
    ]
}