Chandlery for Fallen London

Unofficial Fallen London extension to keep an eye on your action candle and Opportunities deck

¿Qué es Chandlery for Fallen London?

Chandlery for Fallen London es una extensión de Chrome desarrollada por Xan, y su función principal es "Unofficial Fallen London extension to keep an eye on your action candle and Opportunities deck".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Chandlery for Fallen London

Descarga archivos de extensión Chandlery for Fallen London en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Chandlery for Fallen London Chandlery for Fallen London
ID anhebaghddcipcnlgoehajobofkgghje
URL Oficial https://chromewebstore.google.com/detail/chandlery-for-fallen-lond/anhebaghddcipcnlgoehajobofkgghje
Descripción Unofficial Fallen London extension to keep an eye on your action candle and Opportunities deck
Tamaño del Archivo 53.77 KB
Cantidad de Instalaciones 364
Versión Actual 1.4
Última Actualización 2019-05-03
Fecha de Publicación 2019-05-03
Calificación 5.00/5 Total de 11 Calificaciones
Desarrollador Xan
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión http://community.failbettergames.com/topic19830-browser-extension-chandlery-for-fallen-london.aspx
URL de la Página de Ayuda https://github.com/kav2k/chandlery/issues
Idiomas Soportados 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"
}