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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The more you scroll, the more faded the page becomes. Break your browsing habit one scroll at a time."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Browse Less 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    ]
}