Smart Reader - Bionic Reader
Modify a web page to make it more readable
Smart Reader - Bionic Reader क्या है?
Smart Reader - Bionic Reader Poucous द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Modify a web page to make it more readable"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Smart Reader - Bionic Reader एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
SmartReader or Bionic Reader changes a web page to make it more readable by bolding the beginning of a word (like bionic reading). You just need to install and enjoy. Github : https://github.com/Poucous/smartReader Note : the extension will evolve according to its use
एक्सटेंशन की मूल जानकारी
नाम | Smart Reader - Bionic Reader |
ID | cgkfhliknoajpncfpnbmknalklgiekdj |
आधिकारिक URL | https://chromewebstore.google.com/detail/smart-reader-bionic-reade/cgkfhliknoajpncfpnbmknalklgiekdj |
विवरण | Modify a web page to make it more readable |
फ़ाइल का आकार | 84.48 KB |
स्थापना संख्या | 1,057 |
वर्तमान संस्करण | 1.6 |
अंतिम अपडेट | 2022-10-05 |
प्रकाशन तिथि | 2022-06-07 |
रेटिंग | 3.50/5 कुल 6 रेटिंग्स |
डेवलपर | Poucous |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Smart Reader - Bionic Reader", "manifest_version": 3, "version": "1.6", "description": "Modify a web page to make it more readable", "icons": { "48": "\/icons\/smartReader-48.png" }, "permissions": [ "storage", "scripting" ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "\/content_scripts\/assembleElements.js", "\/content_scripts\/filterElements.js", "\/content_scripts\/isThisTag.js", "\/content_scripts\/modifyHtml.js", "\/content_scripts\/removeBold.js", "\/content_scripts\/textAtRoot.js", "\/content_scripts\/isAddonActived.js", "\/content_scripts\/isItLetter.js", "\/content_scripts\/updatePage.js", "main.js" ], "css": [ "style.css" ] } ], "background": { "service_worker": "\/background.js" }, "action": { "default_icon": { "16": "\/icons\/button\/smartReader-16.png", "32": "\/icons\/button\/smartReader-32.png" } } } |