Playing Favourites for Fallen London
Unofficial Fallen London extension to quickly choose favourite branches
Τι είναι το Playing Favourites for Fallen London;
Το Playing Favourites for Fallen London είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Xan, και η κύρια λειτουργία του είναι "Unofficial Fallen London extension to quickly choose favourite branches".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Playing Favourites for Fallen London
Λήψη αρχείων επέκτασης Playing Favourites for Fallen London σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
This is an UNOFFICIAL Chrome extension for Fallen London. This extension allows to mark certain branches in storylets as "favourites", which will cause them to be highlighted and optionally float them to the top of the list. Version 0.4.0 * Updated to work with Fallen London's new UI (by Trevor Loflin / Alexander Kashev) * Fixed random reordering of storylets when discarding / drawing cards (by Alexander Kashev) * Hopefully stopped sync-installed copies of extension from clobbering sync storage (by Alexander Kashev) Fallen London © Failbetter Games While this is not an endorsement, the extension is whitelisted by Failbetter: http://community.failbettergames.com/topic9506-fallen-london-extensions-whitelist.aspx
Βασικές Πληροφορίες Επέκτασης
Όνομα | Playing Favourites for Fallen London |
ID | mcaahfdpnojmloiekappdkeafmhdmfhd |
Επίσημο URL | https://chromewebstore.google.com/detail/playing-favourites-for-fa/mcaahfdpnojmloiekappdkeafmhdmfhd |
Περιγραφή | Unofficial Fallen London extension to quickly choose favourite branches |
Μέγεθος Αρχείου | 66.4 KB |
Αριθμός Εγκαταστάσεων | 271 |
Τρέχουσα Έκδοση | 0.4.0 |
Τελευταία Ενημέρωση | 2018-11-06 |
Ημερομηνία Δημοσίευσης | 2018-11-06 |
Αξιολόγηση | 4.82/5 Συνολικά 17 Αξιολογήσεις |
Προγραμματιστής | Xan |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | http://community.failbettergames.com/topic21968-browser-extension-playing-favourites.aspx |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/kav2k/fl_favourites |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Playing Favourites for Fallen London", "short_name": "Playing Favourites", "description": "Unofficial Fallen London extension to quickly choose favourite branches", "version": "0.4.0", "icons": { "16": "img\/icon16.png", "32": "img\/icon32.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.fallenlondon.com\/*" ], "js": [ "js\/lib\/jquery.js", "js\/lib\/mutation-summary.js", "js\/storage.js", "js\/content.js" ], "css": [ "css\/content.css" ], "run_at": "document_end" } ], "background": { "scripts": [ "js\/storage.js", "js\/background.js" ], "persistent": false }, "permissions": [ "storage", "unlimitedStorage", "*:\/\/*.fallenlondon.com\/*" ], "minimum_chrome_version": "49", "options_ui": { "page": "options.html", "chrome_style": false }, "web_accessible_resources": [ "img\/*" ] } |