Readable
This extension changes a page's
so that it is easier on the eyesReadable क्या है?
Readable Mozzius द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension changes a page's
so that it is easier on the eyes"।एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Readable एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Do you have to read a html page? Does it completely lack any sort of styling? Then Readable is for you! Readable adds the following styles to the body of a html page: color: #444; padding: 0 25%; line-height: 1.4em; font-family: 'Helvetica',sans-serif; The result: Your page is now readable! The background is slightly darker and the text is slightly lighter - lower contrast means it is easier to read. Padding is added to put the content in the middle of the page rather than from the edges, which is horrible to look at. The font is changed to Helvetica, which is a nice font. Activate Readable by clicking the icon next to the Omnibar. Note: this is not magic. Only use on sites with no CSS, it won't fix bad CSS (most of the time)
एक्सटेंशन की मूल जानकारी
नाम | Readable |
ID | mcfkanphaccondbcfdenamohbpfbploe |
आधिकारिक URL | https://chromewebstore.google.com/detail/readable/mcfkanphaccondbcfdenamohbpfbploe |
विवरण | This extension changes a page's so that it is easier on the eyes |
फ़ाइल का आकार | 9.49 KB |
स्थापना संख्या | 718 |
वर्तमान संस्करण | 1.2 |
अंतिम अपडेट | 2017-04-05 |
प्रकाशन तिथि | 2017-04-05 |
रेटिंग | 3.50/5 कुल 6 रेटिंग्स |
डेवलपर | Mozzius |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | http://mozzius.xyz |
समर्थित भाषाएँ | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Readable", "description": "This extension changes a page's so that it is easier on the eyes", "version": "1.2", "browser_action": { "default_icon": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "default_title": "Add basic styles" }, "background": { "scripts": [ "background.js" ] }, "permissions": [ "activeTab" ] } |