FB2 Chrome Reader
Allows you to read files with the .fb2 extension in the Chrome browser.
Co to jest FB2 Chrome Reader?
FB2 Chrome Reader to rozszerzenie Chrome opracowane przez reiko, a jego główną funkcją jest „Allows you to read files with the .fb2 extension in the Chrome browser.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia FB2 Chrome Reader
Pobierz pliki rozszerzeń FB2 Chrome Reader w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | FB2 Chrome Reader |
ID | ejlpdggljbilpbpegpemlioncoakcimk |
Oficjalny URL | https://chromewebstore.google.com/detail/fb2-chrome-reader/ejlpdggljbilpbpegpemlioncoakcimk |
Opis | Allows you to read files with the .fb2 extension in the Chrome browser. |
Rozmiar pliku | 162 KB |
Liczba instalacji | 26,689 |
Aktualna Wersja | 1.0.1 |
Ostatnia Aktualizacja | 2023-08-30 |
Data Publikacji | 2020-04-07 |
Ocena | 3.35/5 Łącznie 62 Oceny |
Deweloper | reiko |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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": [] } |