Fallen London Conversion Helper

This extension for Fallen London adds categories of convertible items to your inventory.

Fallen London Conversion Helper क्या है?

Fallen London Conversion Helper Gallmarch Industries द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension for Fallen London adds categories of convertible items to your inventory."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Fallen London Conversion Helper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        This unofficial extension for Fallen London collects each tier of convertible items in your inventory into its own category for convenience. You can expand and contract each category, or hide it completely.

v3.0.9 updates image paths to work with the February 2021 changes to where Fallen London images live.

v3.0.7 adds app icons for the extension.

v3.0.6 updates to work with the June 2020 Possessions tab update.

v.3.0.5 fixes some Chrome compatibility issues.

v.3.0 updates this extension to work with the Nov 2018 site updates.

v.2.0.5 makes Fidgeting Writer items always convertible.

v.2.0 updates this extension for the redesign that launched in October 2018.

v.1.4 gives you some control over when tier and faction items are enabled or disabled. The new options are in the popup.

v. 1.3.10 adds a category for Fidgeting Writer items (which is hidden by default). You should also be able to see whether your faction items are usable for raising Renown.

v. 0.2.6 adds a category for Tier 4 items and for faction items that raise Renown/Connected. (Both can be disabled in the popup menu, of course.)                    

एक्सटेंशन की मूल जानकारी

नाम Fallen London Conversion Helper Fallen London Conversion Helper
ID bajlcoahedhgjfpfgahdfaoeohmjbhfb
आधिकारिक URL https://chromewebstore.google.com/detail/fallen-london-conversion/bajlcoahedhgjfpfgahdfaoeohmjbhfb
विवरण This extension for Fallen London adds categories of convertible items to your inventory.
फ़ाइल का आकार 129 KB
स्थापना संख्या 604
वर्तमान संस्करण 3.0.9
अंतिम अपडेट 2021-03-02
प्रकाशन तिथि 2020-06-12
रेटिंग 4.67/5 कुल 3 रेटिंग्स
डेवलपर Gallmarch Industries
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://gallmarch.github.io/fl-conversion-helper/
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Fallen London Conversion Helper",
    "description": "This extension for Fallen London adds categories of convertible items to your inventory.",
    "browser_action": {
        "default_popup": "popup\/popup.html"
    },
    "permissions": [
        "storage",
        "*:\/\/*.fallenlondon.com\/"
    ],
    "version": "3.0.9",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "48": "img\/icon-48.png",
        "128": "img\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/fallenlondon.com\/*",
                "https:\/\/*.fallenlondon.com\/*"
            ],
            "css": [
                "styles.css"
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_end"
        }
    ]
}