FurVilla+
Some helpful utilities for the game FurVilla
FurVilla+คืออะไร?
FurVilla+ เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Arcanox และคุณลักษณะหลักของมันคือ "Some helpful utilities for the game FurVilla"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย FurVilla+
ดาวน์โหลดไฟล์ส่วนขยาย FurVilla+ ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension intends to make certain chores and tasks on the game FurVilla easier and less tedious to perform. This is a new extension...more features are to come! Want to request a feature? Contact me on Twitter @ArcanoxDragon -------------------------- Version History 1.3.2: - Removed feature that relocated "Explore Again" button as FurVilla has moved it themselves 1.3.1: - Changed "Automatic Exploration" feature from being fully automatic to simply making it easier to rapidly click the "Explore Again" button (as per request by FurVilla staff) 1.3.0: - Added "Automatic Exploration" feature that will automatically click through all available explorations on the Explorer career page (off by default) - Improved the Item Price display on the stall management screen so it shows prices in green if the current player is the lowest seller - Added options to the extension's popup panel (top-right of Chrome window) to enable or disable different features - Various bug fixes 1.2.0: - Added FurDollars to the "Lowest price" display - Lowest price display now shows on the "Quickstock" page as well 1.1.0: - Improved load time and UI feedback for Stall Item Prices - Added "Harvest All" button to career page for Herbalists (apparently the game has this built-in, but it does not show up consistently for me, so I added my own) 1.0.1: - Fixed a couple minor bugs 1.0: - Initial release -------------------------- What is FurVilla? FurVilla is a browser-based economy game where players control multiple villagers of various anthropomorphic species to gain FurCash and unlock exotic costumes and other rare items. FurVilla is currently in beta. You can check the status at http://www.furvilla.com/ -------------------------- Disclaimer: this extension is not endorsed by FurVilla or its staff. FurVilla cannot provide support for this extension. I, as the author of this extension, hold no liability for any potential adverse effects caused directly or indirectly by the use of the extension.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | kboaabpdcfmfhjobnkmnpjaekhciefao |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/furvilla+/kboaabpdcfmfhjobnkmnpjaekhciefao |
คำอธิบาย | Some helpful utilities for the game FurVilla |
ขนาดไฟล์ | 52 KB |
จำนวนการติดตั้ง | 79 |
เวอร์ชันปัจจุบัน | 1.3.2 |
อัปเดตครั้งล่าสุด | 2016-07-18 |
วันที่เผยแพร่ | 2016-07-18 |
คะแนน | 4.17/5 รวมทั้งหมด 23 คะแนน |
ผู้พัฒนา | Arcanox |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | http://www.furvilla.com |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "FurVilla+", "description": "Some helpful utilities for the game FurVilla", "version": "1.3.2", "background": { "scripts": [ "js\/jquery.min.js", "js\/background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*.furvilla.com\/*" ], "js": [ "js\/jquery.min.js" ] }, { "matches": [ "http:\/\/*.furvilla.com\/stall\/manage" ], "css": [ "css\/item-prices.css" ], "js": [ "js\/jquery.min.js", "js\/util.js", "js\/item-prices.js", "js\/manage-stall.js" ] }, { "matches": [ "http:\/\/*.furvilla.com\/inventory\/quickstock" ], "css": [ "css\/item-prices.css" ], "js": [ "js\/jquery.min.js", "js\/util.js", "js\/item-prices.js", "js\/quickstock.js" ] } ], "page_action": { "default_icon": { "19": "icons\/furvilla-sm.png", "38": "icons\/furvilla-md.png" }, "default_popup": "popup.html", "default_title": "Open the FurVilla+ utilities menu" }, "icons": { "48": "icons\/furvilla.png" }, "permissions": [ "declarativeContent", "activeTab", "tabs", "https:\/\/ajax.googleapis.com\/", "storage" ], "web_accessible_resources": [ "template\/item-price.thtml" ] } |