FL 1-click Wiki

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

Vad är FL 1-click Wiki?

FL 1-click Wiki är en Chrome-tillägg utvecklad av alanhuang122, och dess huvudfunktion är "Open corresponding 'Fallen London Wiki' page with one click!".

Tilläggsskärmbilder

screenshot

Ladda ner FL 1-click Wiki-förlängningens CRX-fil

Ladda ner FL 1-click Wiki-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn FL 1-click Wiki FL 1-click Wiki
ID ceakejjcdgbcocopkdkhiakkohpahien
Officiell webbadress https://chromewebstore.google.com/detail/fl-1-click-wiki/ceakejjcdgbcocopkdkhiakkohpahien
Beskrivning Open corresponding 'Fallen London Wiki' page with one click!
Filstorlek 34.46 KB
Antal Installationer 578
Aktuell Version 1.9.1
Senast Uppdaterad 2023-01-11
Publiceringsdatum 2021-08-27
Betyg 5.00/5 Totalt 5 Betyg
Utvecklare alanhuang122
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/lensvol/fl-oneclick-wiki
Hjälpsida URL https://github.com/lensvol/fl-oneclick-wiki/issues
Stödda Språk 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\/*"
            ]
        }
    ]
}