FB2 Chrome Reader
Allows you to read files with the .fb2 extension in the Chrome browser.
什么是FB2 Chrome Reader?
FB2 Chrome Reader是由reiko开发的Chrome扩展程序,该扩展的主要功能是“Allows you to read files with the .fb2 extension in the Chrome browser.”。
扩展截图
下载FB2 Chrome Reader扩展crx文件
下载FB2 Chrome Reader扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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
扩展基本信息
名称 | FB2 Chrome Reader |
ID | ejlpdggljbilpbpegpemlioncoakcimk |
官方URL | https://chromewebstore.google.com/detail/fb2-chrome-reader/ejlpdggljbilpbpegpemlioncoakcimk |
简介 | Allows you to read files with the .fb2 extension in the Chrome browser. |
文件大小 | 162 KB |
安装次数 | 26,689 |
当前版本 | 1.0.1 |
更新时间 | 2023-08-30 |
上架时间 | 2020-04-07 |
评分 | 3.35/5 共62次评分 |
开发者 | reiko |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | 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": [] } |