Fallen London Goat Farmer's Extension
This extension calculates and displays your total wealth each time you visit the Bazaar page in Fallen London.
Vad är Fallen London Goat Farmer's Extension?
Fallen London Goat Farmer's Extension är en Chrome-tillägg utvecklad av Gallmarch Industries, och dess huvudfunktion är "This extension calculates and displays your total wealth each time you visit the Bazaar page in Fallen London.".
Tilläggsskärmbilder
Ladda ner Fallen London Goat Farmer's Extension-förlängningens CRX-fil
Ladda ner Fallen London Goat Farmer's Extension-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | Fallen London Goat Farmer's Extension |
ID | biefkddpeaninjbkipkgnncpdlbddkfl |
Officiell webbadress | https://chromewebstore.google.com/detail/fallen-london-goat-farmer/biefkddpeaninjbkipkgnncpdlbddkfl |
Beskrivning | This extension calculates and displays your total wealth each time you visit the Bazaar page in Fallen London. |
Filstorlek | 199 KB |
Antal Installationer | 915 |
Aktuell Version | 4.0.1 |
Senast Uppdaterad | 2019-08-07 |
Publiceringsdatum | 2019-08-07 |
Betyg | 5.00/5 Totalt 17 Betyg |
Utvecklare | Gallmarch Industries |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" } ] } |