Mindfully. Hide YouTube End Cards

Mindfully Hides YouTube end cards so you don't miss the climax part of the music video or movie clip

Mindfully. Hide YouTube End Cards란 무엇입니까?

Mindfully. Hide YouTube End Cards은(는) https://tamalchowdhury.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Mindfully Hides YouTube end cards so you don't miss the climax part of the music video or movie clip"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Mindfully. Hide YouTube End Cards 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Don't you hate when YouTube puts those annoying cards at the end of every music video or a movie clip? Mindfully will automatically hide all end cards from YouTube so you won't miss your favorite scene!                    

확장 프로그램 기본 정보

이름 Mindfully. Hide YouTube End Cards Mindfully. Hide YouTube End Cards
ID ifmbbceocmponbpifmpkkhnidmgopmmf
공식 URL https://chromewebstore.google.com/detail/mindfully-hide-youtube-en/ifmbbceocmponbpifmpkkhnidmgopmmf
설명 Mindfully Hides YouTube end cards so you don't miss the climax part of the music video or movie clip
파일 크기 257 KB
설치 횟수 2,913
현재 버전 2.0.1
최근 업데이트 2024-03-04
출시 날짜 2020-04-11
평점 5.00/5 총 19 개의 평점
개발자 https://tamalchowdhury.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://tamalchowdhury.com
도움말 페이지 URL https://twitter.com/tamalchow
개인정보 보호 정책 페이지 URL https://www.freeprivacypolicy.com/live/9336526f-6e40-4cc5-98ef-7552e7739931
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Mindfully. Hide YouTube End Cards",
    "version": "2.0.1",
    "description": "Mindfully Hides YouTube end cards so you don't miss the climax part of the music video or movie clip",
    "permissions": [
        "declarativeContent"
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "action": {
        "default_popup": "pages\/popup.html",
        "default_title": "Mindfully. Hides YouTube Distractions"
    },
    "options_page": "pages\/installed.html",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "content.js"
            ],
            "all_frames": false
        }
    ],
    "icons": {
        "16": "images\/icon128.png",
        "32": "images\/icon128.png",
        "48": "images\/icon128.png",
        "128": "images\/icon128.png"
    }
}