FL Duly Noted
Leave notes on storylet branches in Fallen London.
什么是FL Duly Noted?
FL Duly Noted是由lensvol开发的Chrome扩展程序,该扩展的主要功能是“Leave notes on storylet branches in Fallen London.”。
扩展截图
下载FL Duly Noted扩展crx文件
下载FL Duly Noted扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Sometimes you need to sketch a reminder or two on the branches that you are going to play in "Fallen London". This extension helps with that. 扩展基本信息
| 名称 | |
| ID | beajhalfcfecdnbjlncbbhgpnikekemk |
| 官方URL | https://chromewebstore.google.com/detail/fl-duly-noted/beajhalfcfecdnbjlncbbhgpnikekemk |
| 简介 | Leave notes on storylet branches in Fallen London. |
| 文件大小 | 18.68 KB |
| 安装次数 | 64 |
| 当前版本 | 1.0.2 |
| 更新时间 | 2023-11-21 |
| 上架时间 | 2022-09-21 |
| 开发者 | lensvol |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/lensvol/fl-duly-noted |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "FL Duly Noted",
"description": "Leave notes on storylet branches in Fallen London.",
"version": "1.0.2",
"manifest_version": 3,
"background": {
"service_worker": "background.js"
},
"permissions": [
"tabs",
"storage"
],
"host_permissions": [
"https:\/\/www.fallenlondon.com\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/www.fallenlondon.com\/*"
],
"js": [
"content.js"
],
"run_at": "document_start"
}
],
"action": {
"default_icon": {
"16": "\/images\/fl-duly-noted-icon-16.png",
"32": "\/images\/fl-duly-noted-icon-32.png",
"48": "\/images\/fl-duly-noted-icon-48.png",
"128": "\/images\/fl-duly-noted-icon-128.png"
}
},
"icons": {
"16": "\/images\/fl-duly-noted-icon-16.png",
"32": "\/images\/fl-duly-noted-icon-32.png",
"48": "\/images\/fl-duly-noted-icon-48.png",
"128": "\/images\/fl-duly-noted-icon-128.png"
},
"web_accessible_resources": []
} | |