Playing Favourites for Fallen London
Unofficial Fallen London extension to quickly choose favourite branches
Playing Favourites for Fallen London क्या है?
Playing Favourites for Fallen London Xan द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Unofficial Fallen London extension to quickly choose favourite branches"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Playing Favourites for Fallen London एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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\/*" ] } |