FL 1-click Wiki
Open corresponding 'Fallen London Wiki' page with one click!
O que é FL 1-click Wiki?
FL 1-click Wiki é uma extensão do Chrome desenvolvida por alanhuang122, e sua principal característica é "Open corresponding 'Fallen London Wiki' page with one click!".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão FL 1-click Wiki
Baixe arquivos de extensão FL 1-click Wiki no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | FL 1-click Wiki |
ID | ceakejjcdgbcocopkdkhiakkohpahien |
URL Oficial | https://chromewebstore.google.com/detail/fl-1-click-wiki/ceakejjcdgbcocopkdkhiakkohpahien |
Descrição | Open corresponding 'Fallen London Wiki' page with one click! |
Tamanho do Arquivo | 34.46 KB |
Contagem de Instalações | 578 |
Versão Atual | 1.9.1 |
Última Atualização | 2023-01-11 |
Data de Publicação | 2021-08-27 |
Classificação | 5.00/5 Total de 5 Avaliações |
Desenvolvedor | alanhuang122 |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/lensvol/fl-oneclick-wiki |
URL da Página de Ajuda | https://github.com/lensvol/fl-oneclick-wiki/issues |
Idiomas Suportados | 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\/*" ] } ] } |