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”。
扩展截图
下载Chandlery for Fallen London扩展crx文件
下载Chandlery for Fallen London扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 |
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" } |