Fallen London Goat Farmer's Extension
This extension calculates and displays your total wealth each time you visit the Bazaar page in Fallen London.
Qu'est-ce que Fallen London Goat Farmer's Extension ?
Fallen London Goat Farmer's Extension est une extension Chrome développée par Gallmarch Industries, et sa fonction principale est "This extension calculates and displays your total wealth each time you visit the Bazaar page in Fallen London.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Fallen London Goat Farmer's Extension
Téléchargez les fichiers d'extension Fallen London Goat Farmer's Extension au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Fallen London Goat Farmer's Extension |
ID | biefkddpeaninjbkipkgnncpdlbddkfl |
URL Officiel | https://chromewebstore.google.com/detail/fallen-london-goat-farmer/biefkddpeaninjbkipkgnncpdlbddkfl |
Description | This extension calculates and displays your total wealth each time you visit the Bazaar page in Fallen London. |
Taille du Fichier | 199 KB |
Nombre d'Installations | 915 |
Version Actuelle | 4.0.1 |
Dernière Mise à Jour | 2019-08-07 |
Date de Publication | 2019-08-07 |
Évaluation | 5.00/5 Total 17 Évaluations |
Développeur | Gallmarch Industries |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" } ] } |