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」です。
拡張機能のスクリーンショット
Fallen London Favourites拡張機能のCRXファイルをダウンロード
Fallen London Favourites拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
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 |
Eメール | [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\/*" ] } |