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
Eメール [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\/*"
    ]
}