Reader Mode
Puts Google Chrome into read mode for a pleasant reading experience.
Reader Mode क्या है?
Reader Mode xcv58 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Puts Google Chrome into read mode for a pleasant reading experience."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Reader Mode एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extension is a forked version of https://chrome.google.com/webstore/detail/read-mode/nagcaahojecfeopbghgihcabgiepploa Just click on the glasses icon in the address bar, the current page will turn into a nice-to-read black on white page allowing you to read without forcing your eyes. Ads and Flash animations are also removed while on read-mode. Click the icon again and everything will go back to normal. Use Alt+F to toggle Reader Mode. Use Alt+1, Alt+2, Alt+3 to decrease, increase, reset font size.
एक्सटेंशन की मूल जानकारी
नाम | Reader Mode |
ID | ihgjiapheabakagbnbaminbheoihgajn |
आधिकारिक URL | https://chromewebstore.google.com/detail/reader-mode/ihgjiapheabakagbnbaminbheoihgajn |
विवरण | Puts Google Chrome into read mode for a pleasant reading experience. |
फ़ाइल का आकार | 207 KB |
स्थापना संख्या | 2,885 |
वर्तमान संस्करण | 1.0.9 |
अंतिम अपडेट | 2015-05-07 |
प्रकाशन तिथि | 2015-05-07 |
रेटिंग | 2.75/5 कुल 20 रेटिंग्स |
डेवलपर | xcv58 |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Reader Mode", "version": "1.0.9", "author": "xcv58", "description": "Puts Google Chrome into read mode for a pleasant reading experience.", "icons": { "128": "images\/icon-128.png", "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png" }, "background": { "scripts": [ "js\/json2.js", "js\/background.js" ], "persistent": true }, "content_scripts": [ { "all_frames": true, "css": [ "stylesheets\/reader.css" ], "js": [ "js\/reader.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_start" } ], "page_action": { "default_icon": "images\/icon-enabled.png", "default_title": "Toggle Read Mode." }, "commands": { "decrease-fontsize": { "suggested_key": { "default": "Alt+1", "mac": "Alt+1" }, "description": "decrease font size." }, "increase-fontsize": { "suggested_key": { "default": "Alt+2", "mac": "Alt+2" }, "description": "increase font size." }, "reset-fontsize": { "suggested_key": { "default": "Alt+3", "mac": "Alt+3" }, "description": "reset font size." }, "_execute_page_action": { "suggested_key": { "default": "Alt+R", "mac": "Alt+R" } } }, "options_page": "options.html", "permissions": [ "storage", "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ] } |