Chandlery for Fallen London
Unofficial Fallen London extension to keep an eye on your action candle and Opportunities deck
Cos'è Chandlery for Fallen London?
Chandlery for Fallen London è un'estensione di Chrome sviluppata da Xan, e la sua funzione principale è "Unofficial Fallen London extension to keep an eye on your action candle and Opportunities deck".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Chandlery for Fallen London
Scarica i file di estensione Chandlery for Fallen London in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
This is an UNOFFICIAL Chrome extension for Fallen London. Now updated to the Fallen London redesign. As long as your Fallen London tab is open, it will monitor and update the tab title with your current number of actions and Opportunity deck cards. It will also optionally show desktop notifications when your candle or deck are full. Fallen London © Copyright Failbetter Games Icon credit: by Icons8 from www.flaticon.com, licensed under CC BY 3.0
Informazioni di Base sull'Estensione
Nome | Chandlery for Fallen London |
ID | anhebaghddcipcnlgoehajobofkgghje |
URL Ufficiale | https://chromewebstore.google.com/detail/chandlery-for-fallen-lond/anhebaghddcipcnlgoehajobofkgghje |
Descrizione | Unofficial Fallen London extension to keep an eye on your action candle and Opportunities deck |
Dimensione del File | 53.77 KB |
Conteggio Installazioni | 364 |
Versione Corrente | 1.4 |
Ultimo Aggiornamento | 2019-05-03 |
Data di Pubblicazione | 2019-05-03 |
Valutazione | 5.00/5 Totale 11 Valutazioni |
Sviluppatore | Xan |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | http://community.failbettergames.com/topic19830-browser-extension-chandlery-for-fallen-london.aspx |
URL della Pagina di Aiuto | https://github.com/kav2k/chandlery/issues |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Chandlery for Fallen London", "short_name": "Chandlery", "description": "Unofficial Fallen London extension to keep an eye on your action candle and Opportunities deck", "version": "1.4", "icons": { "16": "img\/icon48.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.fallenlondon.com\/*" ], "js": [ "js\/lib\/mutation-summary.js", "js\/content.js" ] } ], "background": { "scripts": [ "js\/background.js", "js\/notification.js", "js\/storageSync.js" ], "persistent": false }, "options_ui": { "page": "options.html", "chrome_style": false }, "permissions": [ "storage", "notifications", "https:\/\/www.fallenlondon.com\/*" ], "minimum_chrome_version": "50" } |