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!”。

扩展截图

screenshot

下载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 FL 1-click Wiki
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
电子邮箱 [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\/*"
            ]
        }
    ]
}