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