Chandlery for Fallen London

Unofficial Fallen London extension to keep an eye on your action candle and Opportunities deck

Chandlery for Fallen London란 무엇입니까?

Chandlery for Fallen London은(는) Xan에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Unofficial Fallen London extension to keep an eye on your action candle and Opportunities deck"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Chandlery for Fallen London 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This is an UNOFFICIAL Chrome extension for Fallen London.
Now updated to the Fallen London redesign.

As long as your Fallen London tab is open, it will monitor and update the tab title with your current number of actions and Opportunity deck cards.

It will also optionally show desktop notifications when your candle or deck are full.

Fallen London © Copyright Failbetter Games

Icon credit: by Icons8 from www.flaticon.com, licensed under CC BY 3.0                    

확장 프로그램 기본 정보

이름 Chandlery for Fallen London Chandlery for Fallen London
ID anhebaghddcipcnlgoehajobofkgghje
공식 URL https://chromewebstore.google.com/detail/chandlery-for-fallen-lond/anhebaghddcipcnlgoehajobofkgghje
설명 Unofficial Fallen London extension to keep an eye on your action candle and Opportunities deck
파일 크기 53.77 KB
설치 횟수 364
현재 버전 1.4
최근 업데이트 2019-05-03
출시 날짜 2019-05-03
평점 5.00/5 총 11 개의 평점
개발자 Xan
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://community.failbettergames.com/topic19830-browser-extension-chandlery-for-fallen-london.aspx
도움말 페이지 URL https://github.com/kav2k/chandlery/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Chandlery for Fallen London",
    "short_name": "Chandlery",
    "description": "Unofficial Fallen London extension to keep an eye on your action candle and Opportunities deck",
    "version": "1.4",
    "icons": {
        "16": "img\/icon48.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.fallenlondon.com\/*"
            ],
            "js": [
                "js\/lib\/mutation-summary.js",
                "js\/content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js",
            "js\/notification.js",
            "js\/storageSync.js"
        ],
        "persistent": false
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": false
    },
    "permissions": [
        "storage",
        "notifications",
        "https:\/\/www.fallenlondon.com\/*"
    ],
    "minimum_chrome_version": "50"
}