Fallen London Goat Farmer's Extension
This extension calculates and displays your total wealth each time you visit the Bazaar page in Fallen London.
Cos'è Fallen London Goat Farmer's Extension?
Fallen London Goat Farmer's Extension è un'estensione di Chrome sviluppata da Gallmarch Industries, e la sua funzione principale è "This extension calculates and displays your total wealth each time you visit the Bazaar page in Fallen London.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Fallen London Goat Farmer's Extension
Scarica i file di estensione Fallen London Goat Farmer's Extension in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Fallen London Goat Farmer's Extension |
ID | biefkddpeaninjbkipkgnncpdlbddkfl |
URL Ufficiale | https://chromewebstore.google.com/detail/fallen-london-goat-farmer/biefkddpeaninjbkipkgnncpdlbddkfl |
Descrizione | This extension calculates and displays your total wealth each time you visit the Bazaar page in Fallen London. |
Dimensione del File | 199 KB |
Conteggio Installazioni | 915 |
Versione Corrente | 4.0.1 |
Ultimo Aggiornamento | 2019-08-07 |
Data di Pubblicazione | 2019-08-07 |
Valutazione | 5.00/5 Totale 17 Valutazioni |
Sviluppatore | Gallmarch Industries |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" } ] } |