Fallen London Favourites

Fork of an unofficial Fallen London extension to quickly choose favourite branches

What is Fallen London Favourites?

Fallen London Favourites is a Chrome extension developed by forest.vvolf, and its main feature is "Fork of an unofficial Fallen London extension to quickly choose favourite branches".

Extension Screenshots

screenshot
screenshot

Download Fallen London Favourites Extension CRX File

Download Fallen London Favourites extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Fork of an unofficial Fallen London extension.
It allows to mark storylets and options inside storylets with green/red marks and moves them to the top or bottom of the page accordingly.
In extension settings you now can choose to disable discard and action buttons for storylets and cards. Shift key on keyboard allows you to make action anyway.                    

Extension Basic Information

Name Fallen London Favourites Fallen London Favourites
ID jkaoljkdjoecocmlnncdljoeeijlcjao
Official URL https://chromewebstore.google.com/detail/fallen-london-favourites/jkaoljkdjoecocmlnncdljoeeijlcjao
Description Fork of an unofficial Fallen London extension to quickly choose favourite branches
File Size 66.91 KB
Installation Count 341
Current Version 0.5.2
Last Updated 2020-09-16
Publish Date 2020-03-15
Rating 5.00/5 Total 5 Ratings
Developer forest.vvolf
Email [email protected]
Payment Type free
Extension Website https://github.com/gasovn/fl_favourites
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Fallen London Favourites",
    "short_name": "Fallen London Favourites",
    "description": "Fork of an unofficial Fallen London extension to quickly choose favourite branches",
    "version": "0.5.2",
    "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\/*"
    ]
}