FB2 Chrome Reader
Allows you to read files with the .fb2 extension in the Chrome browser.
FB2 Chrome Reader क्या है?
FB2 Chrome Reader reiko द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allows you to read files with the .fb2 extension in the Chrome browser."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में FB2 Chrome Reader एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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": [] } |