Fallen London Favourites

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

Fallen London Favourites란 무엇입니까?

Fallen London Favourites은(는) forest.vvolf에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Fork of an unofficial Fallen London extension to quickly choose favourite branches"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Fallen London Favourites Fallen London Favourites
ID jkaoljkdjoecocmlnncdljoeeijlcjao
공식 URL https://chromewebstore.google.com/detail/fallen-london-favourites/jkaoljkdjoecocmlnncdljoeeijlcjao
설명 Fork of an unofficial Fallen London extension to quickly choose favourite branches
파일 크기 66.91 KB
설치 횟수 341
현재 버전 0.5.2
최근 업데이트 2020-09-16
출시 날짜 2020-03-15
평점 5.00/5 총 5 개의 평점
개발자 forest.vvolf
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/gasovn/fl_favourites
지원되는 언어 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\/*"
    ]
}