Playing Favourites for Fallen London
Unofficial Fallen London extension to quickly choose favourite branches
O que é Playing Favourites for Fallen London?
Playing Favourites for Fallen London é uma extensão do Chrome desenvolvida por Xan, e sua principal característica é "Unofficial Fallen London extension to quickly choose favourite branches".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Playing Favourites for Fallen London
Baixe arquivos de extensão Playing Favourites for Fallen London no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Playing Favourites for Fallen London |
ID | mcaahfdpnojmloiekappdkeafmhdmfhd |
URL Oficial | https://chromewebstore.google.com/detail/playing-favourites-for-fa/mcaahfdpnojmloiekappdkeafmhdmfhd |
Descrição | Unofficial Fallen London extension to quickly choose favourite branches |
Tamanho do Arquivo | 66.4 KB |
Contagem de Instalações | 271 |
Versão Atual | 0.4.0 |
Última Atualização | 2018-11-06 |
Data de Publicação | 2018-11-06 |
Classificação | 4.82/5 Total de 17 Avaliações |
Desenvolvedor | Xan |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | http://community.failbettergames.com/topic21968-browser-extension-playing-favourites.aspx |
URL da Página de Ajuda | https://github.com/kav2k/fl_favourites |
Idiomas Suportados | 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\/*" ] } |