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是由Gallmarch Industries开发的Chrome扩展程序,该扩展的主要功能是“This extension calculates and displays your total wealth each time you visit the Bazaar page in Fallen London.”。
扩展截图
下载Fallen London Goat Farmer's Extension扩展crx文件
下载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 |
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" } ] } |