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 |
官方網址 | 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" } ] } |