FL 1-click Wiki
Open corresponding 'Fallen London Wiki' page with one click!
FL 1-click Wikiとは何ですか?
FL 1-click Wikiはalanhuang122によって開発されたChromeの拡張機能で、その主な機能は「Open corresponding 'Fallen London Wiki' page with one click!」です。
拡張機能のスクリーンショット
FL 1-click Wiki拡張機能のCRXファイルをダウンロード
FL 1-click Wiki拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension adds a small "button" near the storylet title. When clicked, this button opens a new tab with a Fallen London Wiki page corresponding to the current storylet. 拡張機能の基本情報
| 名前 | |
| ID | ceakejjcdgbcocopkdkhiakkohpahien |
| 公式URL | https://chromewebstore.google.com/detail/fl-1-click-wiki/ceakejjcdgbcocopkdkhiakkohpahien |
| 説明 | Open corresponding 'Fallen London Wiki' page with one click! |
| ファイルサイズ | 34.46 KB |
| インストール数 | 578 |
| 現在のバージョン | 1.9.1 |
| 最終更新日 | 2023-01-11 |
| 公開日 | 2021-08-27 |
| 評価 | 5.00/5 合計 5 レビュー |
| 開発者 | alanhuang122 |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/lensvol/fl-oneclick-wiki |
| ヘルプページのURL | https://github.com/lensvol/fl-oneclick-wiki/issues |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "FL 1-click Wiki",
"description": "Open corresponding 'Fallen London Wiki' page with one click!",
"version": "1.9.1",
"manifest_version": 3,
"background": {
"service_worker": "background.js"
},
"permissions": [],
"host_permissions": [
"https:\/\/fallenlondon.wiki\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/www.fallenlondon.com\/*"
],
"css": [
"extension.css"
],
"js": [
"content.js"
],
"run_at": "document_start"
}
],
"icons": {
"16": "\/images\/fl-wiki-icon-16.png",
"32": "\/images\/fl-wiki-icon-32.png",
"48": "\/images\/fl-wiki-icon-48.png",
"128": "\/images\/fl-wiki-icon-128.png"
},
"web_accessible_resources": [
{
"resources": [
"inject.js"
],
"matches": [
"https:\/\/*.fallenlondon.com\/*"
]
}
]
} | |