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 |
电子邮箱 | [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\/*" ] } |