Less Addictive YouTube

Remove elements from YouTube (thumbnails, Shorts, or comments) to make it less addictive.

Less Addictive YouTube란 무엇입니까?

Less Addictive YouTube은(는) AlexisDrain에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Remove elements from YouTube (thumbnails, Shorts, or comments) to make it less addictive."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Remove some elements from YouTube to make it less addictive. Mix and match between the following options:
- Hide or show thumbnails and video preview
- Hide or show recommended videos sidebar
- Hide or show comments
- Hide or show Shorts

---------------
(1-10-2024) v1.45: 
- New feature: Added option to show/hide videos on the front page. 

Changelog (12-17-2023):
- Fixed bug where extension doesn't work in new tabs.
- Changed logo.

Changelog (12-07-2023):
New Features:
- Extension now displays your changes immediately. No need to F5/Refresh to see your new settings.
- Extension now works before any of the DOM objects are rendered. No more tiny flash of hidden content being shown when you reload the page.
- Slightly cleaner options menu with labels above each category (Thumbnails, In video, Misc).
- Option: make video length visible even with no thumbnail.
- Option: show how much you've watched from the video (the red bar below the thumbnails)

Bug fixes: 
- Bug fix: "Show Explore content" is now separate from Shorts.
- Bug fix: unchecking "Show Explore content" used to remove the "Latest, Popular, Oldest" sorting on channel pages.                    

확장 프로그램 기본 정보

이름 Less Addictive YouTube Less Addictive YouTube
ID olhmbgdbpfpkpejldoihajphhilpdnle
공식 URL https://chromewebstore.google.com/detail/less-addictive-youtube/olhmbgdbpfpkpejldoihajphhilpdnle
설명 Remove elements from YouTube (thumbnails, Shorts, or comments) to make it less addictive.
파일 크기 44.27 KB
설치 횟수 1,213
현재 버전 1.45
최근 업데이트 2024-01-11
출시 날짜 2021-06-30
평점 5.00/5 총 8 개의 평점
개발자 AlexisDrain
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/AlexisDrain/Less-Addictive-YouTube
도움말 페이지 URL https://github.com/AlexisDrain/Less-Addictive-YouTube/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Remove elements from YouTube (thumbnails, Shorts, or comments) to make it less addictive.",
    "manifest_version": 3,
    "name": "Less Addictive YouTube",
    "version": "1.45",
    "author": "AlexisDrain",
    "homepage_url": "https:\/\/github.com\/AlexisDrain\/Less-Addictive-YouTube",
    "icons": {
        "144": "icons\/favicon4_144.png"
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "browser-polyfill.js",
                "contentscript.js"
            ]
        }
    ],
    "action": {
        "default_icon": "icons\/favicon4_144.png",
        "default_title": "Less Addictive Youtube",
        "default_popup": "options\/options.html"
    },
    "permissions": [
        "storage"
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "{3d0875ee-0162-4af4-9613-12e89bcf9a7d}"
        }
    }
}