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开发的Chrome扩展程序,该扩展的主要功能是“Unofficial Fallen London extension to quickly choose favourite branches”。

扩展截图

screenshot

下载Playing Favourites for Fallen London扩展crx文件

下载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 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\/*"
    ]
}