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.
擴展基本資訊
名稱 | FL 1-click Wiki |
ID | ceakejjcdgbcocopkdkhiakkohpahien |
官方網址 | 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 |
電子郵箱 | [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\/*" ] } ] } |