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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension for Fallen London adds categories of convertible items to your inventory."입니다.

확장 프로그램 스크린샷

screenshot

Fallen London Conversion Helper 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
        }
    ]
}