Playing Favourites for Fallen London
Unofficial Fallen London extension to quickly choose favourite branches
Playing Favourites for Fallen London란 무엇입니까?
Playing Favourites for Fallen London은(는) Xan에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Unofficial Fallen London extension to quickly choose favourite branches"입니다.
확장 프로그램 스크린샷
Playing Favourites for Fallen London 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This is an UNOFFICIAL Chrome extension for Fallen London. This extension allows to mark certain branches in storylets as "favourites", which will cause them to be highlighted and optionally float them to the top of the list. Version 0.4.0 * Updated to work with Fallen London's new UI (by Trevor Loflin / Alexander Kashev) * Fixed random reordering of storylets when discarding / drawing cards (by Alexander Kashev) * Hopefully stopped sync-installed copies of extension from clobbering sync storage (by Alexander Kashev) Fallen London © Failbetter Games While this is not an endorsement, the extension is whitelisted by Failbetter: http://community.failbettergames.com/topic9506-fallen-london-extensions-whitelist.aspx
확장 프로그램 기본 정보
이름 | Playing Favourites for Fallen London |
ID | mcaahfdpnojmloiekappdkeafmhdmfhd |
공식 URL | https://chromewebstore.google.com/detail/playing-favourites-for-fa/mcaahfdpnojmloiekappdkeafmhdmfhd |
설명 | Unofficial Fallen London extension to quickly choose favourite branches |
파일 크기 | 66.4 KB |
설치 횟수 | 271 |
현재 버전 | 0.4.0 |
최근 업데이트 | 2018-11-06 |
출시 날짜 | 2018-11-06 |
평점 | 4.82/5 총 17 개의 평점 |
개발자 | Xan |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://community.failbettergames.com/topic21968-browser-extension-playing-favourites.aspx |
도움말 페이지 URL | https://github.com/kav2k/fl_favourites |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Playing Favourites for Fallen London", "short_name": "Playing Favourites", "description": "Unofficial Fallen London extension to quickly choose favourite branches", "version": "0.4.0", "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\/*" ] } |