Fairy Ring
A browser extension for fairylandgame.com
Τι είναι το Fairy Ring;
Το Fairy Ring είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Danger-Dev, και η κύρια λειτουργία του είναι "A browser extension for fairylandgame.com".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Fairy Ring
Λήψη αρχείων επέκτασης Fairy Ring σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
The sole purpose of this extension is adding quality of life functions to the browser game "FairyLand". Learn more: https://github.com/thedanger1/Fairy-Ring Note: This can only be used on the site itself, not Facebook! ★ Customizable! Easily change and configure settings to suite you. Pick your own colors, set your own messages, enhance your experience! Settings are synced across devices so long as you are logged in with the same email account. ★ Wildlife Calculations: • This extension will look at a loaded garden page and calculate the estimated percent chance of wildlife in the garden, on a given plate, and the time period that a plate is able to receive new wildlife. • Ability to embed the calculated information right into the page for easy decision making. • Ability to change colors and the percentages that go with them. ★ Quality of life: • Dark Theme • Ability to hide gardens which do not currently contain food. • Ability to automatically complete the snail and Magical Mushrooms games. • Ability to click a plant directly to water it. • Ability to set a custom message to automatically type on every visited garden (you will still have to hit "post"), along with a second message for if you happen to spot wildlife. You can include the name of the spotted wildlife in the message. • Alchemy page settings can be automatically filled in and buttons added for convenience. • Wildlife pages have a "open all gardens" button and "next" added at the top for convenience. ★ Android support (Only for Firefox app, search for "Fairy Ring" on the Firefox app store). ➤ FAQ: https://github.com/thedanger1/Fairy-Ring/blob/master/README.md#faq ➤ What's new? https://github.com/thedanger1/Fairy-Ring/blob/master/CHANGELOG.md - Currently in beta, expect frequent changes/some bugs. Disclaimer: Fairyland is a registered trademark, this extension is not affiliated with it.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Fairy Ring |
ID | ncmgbhjephcfekbcdfeclbjldipffmge |
Επίσημο URL | https://chromewebstore.google.com/detail/fairy-ring/ncmgbhjephcfekbcdfeclbjldipffmge |
Περιγραφή | A browser extension for fairylandgame.com |
Μέγεθος Αρχείου | 168 KB |
Αριθμός Εγκαταστάσεων | 927 |
Τρέχουσα Έκδοση | 0.12.14 |
Τελευταία Ενημέρωση | 2023-06-08 |
Ημερομηνία Δημοσίευσης | 2020-04-29 |
Αξιολόγηση | 5.00/5 Συνολικά 6 Αξιολογήσεις |
Προγραμματιστής | Danger-Dev |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/thedanger1/Fairy-Ring |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/thedanger1/Fairy-Ring/blob/master/README.md |
URL της Σελίδας Πολιτικής Απορρήτου | https://github.com/thedanger1/Fairy-Ring/blob/master/Privacy.md |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Fairy Ring", "author": "Danger Dev", "version": "0.12.14", "description": "A browser extension for fairylandgame.com", "browser_specific_settings": { "gecko": { "id": "fairyring@fairyring", "strict_min_version": "57.0" } }, "browser_action": { "default_title": "Fairy Ring", "default_popup": "src\/options.html", "default_icon": "icons\/mushroom16.png" }, "icons": { "16": "icons\/mushroom16.png", "48": "icons\/mushroom48.png", "128": "icons\/mushroom128.png" }, "options_ui": { "page": "src\/options.html", "open_in_tab": false }, "permissions": [ "storage", "https:\/\/www.fairylandgame.com\/*" ], "content_scripts": [ { "run_at": "document_start", "matches": [ "https:\/\/www.fairylandgame.com\/*" ], "css": [ "src\/notification\/notifications.css" ], "js": [ "src\/jquery.js", "src\/notification\/notifications.js", "src\/maxtimes.js", "src\/mintimes.js", "src\/defaults.js", "src\/formatmessage.js", "src\/garden.js", "src\/homepage.js", "src\/wildlifepage.js", "src\/alchemy.js", "src\/mushroomgame.js", "src\/main.js" ] } ], "background": { "scripts": [ "src\/background.js" ], "persistent": false } } |