Browse Less

The more you scroll, the more faded the page becomes. Break your browsing habit one scroll at a time.

Browse Less क्या है?

Browse Less https://dopplercreative.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "The more you scroll, the more faded the page becomes. Break your browsing habit one scroll at a time."।

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

screenshot
screenshot

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

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

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

                        Unlike most productivity extensions, Browse Less kindly encourages you to stop wasting your time browsing a website by fading the page as you scroll.

Features:
+Fade website as you scroll down
+Enable/Disable on separate websites
+Adjust fade amount
+Auto save settings

Note: This extension will only work on pages with Javascript enabled. The Chrome Web Store prevents Javascript from loading, so try it out on other websites.

Version 1.0.0 - March 23, 2022
+Updated description for store page

Version 0.6 - December 6, 2021
+Updated slider max value from 5 to 20 (1 = fade quickly, 20 = fade slowly)
+Updated slider icon
+Added error message for websites that do not allow extensions

Version 0.5 - November 23, 2021
+Added slider option for custom fade amount (left = show less content, right = show more content)
+Improved setting menu. Page now updates instantly when settings are changed (previously required a page refresh)

Version 0.4 - April 4, 2021
+Added option to enable fading for specific pages

Version 0.3 - July 10, 2019
+Changed blacklist behavior. By default, the script is disabled per site

Version 0.2 - July 10, 2019
+Updated URL matching permission

Version 0.1 - July 9, 2019
+Added opacity filter when scrolling
+Added option to disable the script                    

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

नाम Browse Less Browse Less
ID cdbbbaknlcfhdjgnhemhlpemkbnfgoam
आधिकारिक URL https://chromewebstore.google.com/detail/browse-less/cdbbbaknlcfhdjgnhemhlpemkbnfgoam
विवरण The more you scroll, the more faded the page becomes. Break your browsing habit one scroll at a time.
फ़ाइल का आकार 355 KB
स्थापना संख्या 486
वर्तमान संस्करण 1.0.0
अंतिम अपडेट 2022-03-24
प्रकाशन तिथि 2019-07-20
रेटिंग 3.82/5 कुल 11 रेटिंग्स
डेवलपर https://dopplercreative.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://www.dopplercreative.com
गोपनीयता नीति पृष्ठ URL https://www.dopplercreative.com/privacy-policy
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Browse Less",
    "description": "The more you scroll, the more faded the page becomes. Break your browsing habit one scroll at a time.",
    "version": "1.0.0",
    "action": {
        "default_popup": "www\/popup.html",
        "default_title": "Browse Less"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_end",
            "js": [
                "www\/js\/main.js"
            ]
        }
    ],
    "icons": {
        "16": "www\/img\/icons\/icon16.png",
        "48": "www\/img\/icons\/icon48.png",
        "128": "www\/img\/icons\/icon128.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ]
}