FL 1-click Wiki

Open corresponding 'Fallen London Wiki' page with one click!

FL 1-click Wiki là gì?

FL 1-click Wiki là một tiện ích mở rộng Chrome được phát triển bởi alanhuang122, và tính năng chính của nó là "Open corresponding 'Fallen London Wiki' page with one click!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng FL 1-click Wiki

Tải xuống các tệp mở rộng FL 1-click Wiki dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên FL 1-click Wiki FL 1-click Wiki
ID ceakejjcdgbcocopkdkhiakkohpahien
URL Chính Thức https://chromewebstore.google.com/detail/fl-1-click-wiki/ceakejjcdgbcocopkdkhiakkohpahien
Mô tả Open corresponding 'Fallen London Wiki' page with one click!
Kích Thước Tệp 34.46 KB
Số Lần Cài Đặt 578
Phiên Bản Hiện Tại 1.9.1
Cập Nhật Lần Cuối 2023-01-11
Ngày Phát Hành 2021-08-27
Đánh Giá 5.00/5 Tổng số 5 Đánh Giá
Nhà Phát Triển alanhuang122
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/lensvol/fl-oneclick-wiki
URL Trang Trợ Giúp https://github.com/lensvol/fl-oneclick-wiki/issues
Ngôn Ngữ Được Hỗ Trợ 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\/*"
            ]
        }
    ]
}