QuickReader

Highlight and QuickRead parts of a web page to move them to a clearer and more spacious tab for easy reading.

QuickReader क्या है?

QuickReader Hopeful Llama द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Highlight and QuickRead parts of a web page to move them to a clearer and more spacious tab for easy reading."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में QuickReader एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        QuickReader is a light weight extension that allow you to select part of a web page, and use the QuickRead action to transfer your selection to a clearer and more spacious tab. This allows for easy reading of your selection, and maximises the usage of screen space. Especially useful for reading large amounts of text, such as documentation or articles. Also useful for when the page you are reading is cluttered with unrelated content like adverts or navigation menus.

Though the options, you can specify some basic CSS to adapt your QuickRead tab to your liking allowing for stylisation. Recommendation is to have a dark background, with light foreground elements.                    

एक्सटेंशन की मूल जानकारी

नाम QuickReader QuickReader
ID ibnoccdnpacmjpjaobalgiahopkkdlcl
आधिकारिक URL https://chromewebstore.google.com/detail/quickreader/ibnoccdnpacmjpjaobalgiahopkkdlcl
विवरण Highlight and QuickRead parts of a web page to move them to a clearer and more spacious tab for easy reading.
फ़ाइल का आकार 229 KB
स्थापना संख्या 25
वर्तमान संस्करण 0.0.0.1
अंतिम अपडेट 2014-09-03
प्रकाशन तिथि 2014-09-03
रेटिंग 4.00/5 कुल 4 रेटिंग्स
डेवलपर Hopeful Llama
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "QuickReader",
    "short_name": "QR",
    "description": "Highlight and QuickRead parts of a web page to move them to a clearer and more spacious tab for easy reading.",
    "version": "0.0.0.1",
    "options_page": "options.html",
    "browser_action": {
        "default_popup": "options.html",
        "default_icon": "icon16.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "contextMenus",
        "activeTab",
        "tabs"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}