FB2 Chrome Reader

Allows you to read files with the .fb2 extension in the Chrome browser.

O que é FB2 Chrome Reader?

FB2 Chrome Reader é uma extensão do Chrome desenvolvida por reiko, e sua principal característica é "Allows you to read files with the .fb2 extension in the Chrome browser.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão FB2 Chrome Reader

Baixe arquivos de extensão FB2 Chrome Reader 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

                        Now you can open and read files with the .fb2 extension in the Chrome browser. (local files). Just drag and drop your .fb2 file into your browser and read!

▶️▶️▶️To run this extension you need to: "Allow access to file URLS" in the "Extension management" tab◀️◀️◀️

Version: 1.0.1 - minor fixes                    

Informações Básicas da Extensão

Nome FB2 Chrome Reader FB2 Chrome Reader
ID ejlpdggljbilpbpegpemlioncoakcimk
URL Oficial https://chromewebstore.google.com/detail/fb2-chrome-reader/ejlpdggljbilpbpegpemlioncoakcimk
Descrição Allows you to read files with the .fb2 extension in the Chrome browser.
Tamanho do Arquivo 162 KB
Contagem de Instalações 26,689
Versão Atual 1.0.1
Última Atualização 2023-08-30
Data de Publicação 2020-04-07
Classificação 3.35/5 Total de 62 Avaliações
Desenvolvedor reiko
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_appName__",
    "short_name": "FB2 Reader",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "version": "1.0.1",
    "icons": {
        "128": "logo.png"
    },
    "action": {
        "default_icon": "logo.png",
        "default_title": "FB2 Chrome Reader",
        "default_popup": "index.html"
    },
    "content_scripts": [
        {
            "matches": [
                "file:\/\/\/*.fb2"
            ],
            "run_at": "document_start",
            "js": [
                "content.js"
            ],
            "css": [
                "fonts.css",
                "styles.css"
            ]
        }
    ],
    "permissions": []
}