FL 1-click Wiki

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

Qu'est-ce que FL 1-click Wiki ?

FL 1-click Wiki est une extension Chrome développée par alanhuang122, et sa fonction principale est "Open corresponding 'Fallen London Wiki' page with one click!".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension FL 1-click Wiki

Téléchargez les fichiers d'extension FL 1-click Wiki au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom FL 1-click Wiki FL 1-click Wiki
ID ceakejjcdgbcocopkdkhiakkohpahien
URL Officiel https://chromewebstore.google.com/detail/fl-1-click-wiki/ceakejjcdgbcocopkdkhiakkohpahien
Description Open corresponding 'Fallen London Wiki' page with one click!
Taille du Fichier 34.46 KB
Nombre d'Installations 578
Version Actuelle 1.9.1
Dernière Mise à Jour 2023-01-11
Date de Publication 2021-08-27
Évaluation 5.00/5 Total 5 Évaluations
Développeur alanhuang122
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/lensvol/fl-oneclick-wiki
URL de la Page d'Aide https://github.com/lensvol/fl-oneclick-wiki/issues
Langues Prises en Charge 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\/*"
            ]
        }
    ]
}