FB2 Chrome Reader
Allows you to read files with the .fb2 extension in the Chrome browser.
Vad är FB2 Chrome Reader?
FB2 Chrome Reader är en Chrome-tillägg utvecklad av reiko, och dess huvudfunktion är "Allows you to read files with the .fb2 extension in the Chrome browser.".
Tilläggsskärmbilder
Ladda ner FB2 Chrome Reader-förlängningens CRX-fil
Ladda ner FB2 Chrome Reader-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
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
Grundläggande Information om Tillägg
Namn | FB2 Chrome Reader |
ID | ejlpdggljbilpbpegpemlioncoakcimk |
Officiell webbadress | https://chromewebstore.google.com/detail/fb2-chrome-reader/ejlpdggljbilpbpegpemlioncoakcimk |
Beskrivning | Allows you to read files with the .fb2 extension in the Chrome browser. |
Filstorlek | 162 KB |
Antal Installationer | 26,689 |
Aktuell Version | 1.0.1 |
Senast Uppdaterad | 2023-08-30 |
Publiceringsdatum | 2020-04-07 |
Betyg | 3.35/5 Totalt 62 Betyg |
Utvecklare | reiko |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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": [] } |