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 |
| 官方網址 | 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": []
} | |