Browse Less
The more you scroll, the more faded the page becomes. Break your browsing habit one scroll at a time.
What is Browse Less?
Browse Less is a Chrome extension developed by https://dopplercreative.com, and its main feature is "The more you scroll, the more faded the page becomes. Break your browsing habit one scroll at a time.".
Extension Screenshots
Download Browse Less Extension CRX File
Download Browse Less extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | |
ID | cdbbbaknlcfhdjgnhemhlpemkbnfgoam |
Official URL | https://chromewebstore.google.com/detail/browse-less/cdbbbaknlcfhdjgnhemhlpemkbnfgoam |
Description | The more you scroll, the more faded the page becomes. Break your browsing habit one scroll at a time. |
File Size | 355 KB |
Installation Count | 486 |
Current Version | 1.0.0 |
Last Updated | 2022-03-24 |
Publish Date | 2019-07-20 |
Rating | 3.82/5 Total 11 Ratings |
Developer | https://dopplercreative.com |
[email protected] | |
Payment Type | free |
Extension Website | https://www.dopplercreative.com |
Privacy Policy Page URL | https://www.dopplercreative.com/privacy-policy |
Supported Languages | 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" ] } |