FL 1-click Wiki

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

FL 1-click Wikiคืออะไร?

FL 1-click Wiki เป็นส่วนขยายของ Chrome ที่พัฒนาโดย alanhuang122 และคุณลักษณะหลักของมันคือ "Open corresponding 'Fallen London Wiki' page with one click!"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย FL 1-click Wiki

ดาวน์โหลดไฟล์ส่วนขยาย 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\/*"
            ]
        }
    ]
}