Focus Reader View

Distraction-free reading view like Safari Reader View, Readability, or Chromium Distiller DOM.

Focus Reader View क्या है?

Focus Reader View kortina द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Distraction-free reading view like Safari Reader View, Readability, or Chromium Distiller DOM."।

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

screenshot
screenshot

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

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

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

                        Distraction-free reading view like Safari Reader View, Readability, or Chromium Distiller DOM.

* ctrl+shift+o keyboard shortcut (or use the button)
* large font size for easy reading
* sensible line width
* simple black Helvetica on a white background                    

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

नाम Focus Reader View Focus Reader View
ID fbhngbllhjggfpkeeiddgkkliacmegin
आधिकारिक URL https://chrome.google.com/webstore/detail/focus-reader-view/fbhngbllhjggfpkeeiddgkkliacmegin
विवरण Distraction-free reading view like Safari Reader View, Readability, or Chromium Distiller DOM.
फ़ाइल का आकार 804 KB
स्थापना संख्या 931
वर्तमान संस्करण 0.0.2
अंतिम अपडेट 2017-06-03
प्रकाशन तिथि 2017-06-03
रेटिंग 2.94/5 कुल 18 रेटिंग्स
डेवलपर kortina
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/kortina/focus-reader-view-chrome-extension/
सहायता पृष्ठ URL https://github.com/kortina/focus-reader-view-chrome-extension/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Focus Reader View",
    "description": "Distraction-free reading view like Safari Reader View, Readability, or Chromium Distiller DOM.",
    "version": "0.0.2",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "images\/focus-reader-view16.png",
        "48": "images\/focus-reader-view48.png",
        "128": "images\/focus-reader-view128.png"
    },
    "page_action": {
        "default_icon": {
            "19": "images\/focus-reader-view19.png",
            "38": "images\/focus-reader-view38.png"
        },
        "default_title": "Distraction-free reading."
    },
    "permissions": [
        "storage",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "css": [
                "focus-reader.css"
            ],
            "js": [
                "jquery.min.1.3.2.js",
                "content.js"
            ]
        }
    ]
}