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 |
Eメール | [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": [] } |