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 |
官方網址 | 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": [] } |