Unclutter — Modern Reader Mode

Read, bookmark, and highlight articles with style.

Unclutter — Modern Reader Mode क्या है?

Unclutter — Modern Reader Mode https://lindylearn.io द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Read, bookmark, and highlight articles with style."।

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

screenshot
screenshot
screenshot

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

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

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

                        Unclutter is a new kind of reader mode that keeps the visual style of articles intact. Plus it automatically saves articles for you. Instantly in your browser.

➤ Focus: Remove remove everything that's not text from a page.
➤ Customise: Change the text size or enable dark mode everywhere.
➤ Save for later: Manage your reading queue directly in your browser.
➤ Highlight: Select any text to save it. Then search across it later.

This project is Open-Source! Follow the development, suggest features, or contribute at github.com/lindylearn/unclutter                    

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

नाम Unclutter — Modern Reader Mode Unclutter — Modern Reader Mode
ID ibckhpijbdmdobhhhodkceffdngnglpk
आधिकारिक URL https://chromewebstore.google.com/detail/unclutter-%E2%80%94-modern-reader/ibckhpijbdmdobhhhodkceffdngnglpk
विवरण Read, bookmark, and highlight articles with style.
फ़ाइल का आकार 2.31 MB
स्थापना संख्या 7,421
वर्तमान संस्करण 1.7.5
अंतिम अपडेट 2023-02-28
प्रकाशन तिथि 2022-03-09
रेटिंग 4.81/5 कुल 36 रेटिंग्स
डेवलपर https://lindylearn.io
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://unclutter.lindylearn.io
सहायता पृष्ठ URL https://github.com/lindylearn/unclutter/issues
गोपनीयता नीति पृष्ठ URL https://github.com/lindylearn/unclutter/blob/main/docs/metrics.md
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Unclutter \u2014 Modern Reader Mode",
    "version": "1.7.5",
    "description": "Read, bookmark, and highlight articles with style.",
    "homepage_url": "https:\/\/github.com\/lindylearn\/unclutter",
    "manifest_version": 3,
    "action": {
        "default_title": "Unclutter Current Article (Alt+C)"
    },
    "icons": {
        "128": "assets\/icon.png"
    },
    "permissions": [
        "storage",
        "scripting"
    ],
    "optional_permissions": [
        "contextMenus",
        "bookmarks",
        "alarms"
    ],
    "host_permissions": [
        ""
    ],
    "options_ui": {
        "page": "settings-page\/index.html"
    },
    "minimum_chrome_version": "93",
    "background": {
        "service_worker": "background\/events.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script\/boot.js"
            ],
            "css": [
                "content-script\/pageview\/content.css"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "content-script\/pageview\/content.css",
                "overlay\/index.css",
                "overlay\/indexDark.css",
                "overlay\/outline\/outlineDark.css",
                "overlay\/outline\/bottomDark.css",
                "overlay\/modal\/modalDark.css",
                "data\/siteTweaks.css",
                "data\/siteTweaksDark.css",
                "sidebar\/*",
                "review\/*",
                "modal\/index.html",
                "modal\/index.css",
                "modal\/dark.css",
                "modal\/index.js",
                "modal\/messaging.js",
                "settings-page\/indexFirefoxOverride.css",
                "assets\/**"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Alt+C"
            }
        }
    },
    "externally_connectable": {
        "ids": [
            "*"
        ],
        "matches": [
            "https:\/\/my.unclutter.it\/*",
            "http:\/\/localhost:3000\/*"
        ]
    }
}