Remove YouTube Autoplay

Isn't YouTube autoplay the worst? This removes it

Remove YouTube Autoplay란 무엇입니까?

Remove YouTube Autoplay은(는) Kareem ElFaramawi에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Isn't YouTube autoplay the worst? This removes it"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Remove YouTube Autoplay 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Simple extension to completely disable and remove the YouTube autoplay feature, which would load another video after the current one ends.

This extension will continue to work if you:
- Delete browser history
- Enter incognito mode (After enabling this option in your extension settings)

Note that this extension only affects videos that would normally show the autoplay switch, this excludes playlists, livestreams, etc.                    

확장 프로그램 기본 정보

이름 Remove YouTube Autoplay Remove YouTube Autoplay
ID afppjndapmkekhnionfccdnajhdnokhj
공식 URL https://chromewebstore.google.com/detail/remove-youtube-autoplay/afppjndapmkekhnionfccdnajhdnokhj
설명 Isn't YouTube autoplay the worst? This removes it
파일 크기 1.68 MB
설치 횟수 848
현재 버전 0.1.7
최근 업데이트 2023-06-05
출시 날짜 2018-10-06
평점 3.57/5 총 23 개의 평점
개발자 Kareem ElFaramawi
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/krx/chrome-delete-youtube-autoplay
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Remove YouTube Autoplay",
    "description": "Isn't YouTube autoplay the worst? This removes it",
    "author": "krx",
    "version": "0.1.7",
    "host_permissions": [
        "http:\/\/www.youtube.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "js\/disableAutoplay.js"
            ],
            "run_at": "document_end"
        }
    ],
    "action": {
        "default_icon": "img\/icon_19.png"
    },
    "icons": {
        "16": "img\/icon_16.png",
        "48": "img\/icon_48.png",
        "64": "img\/icon_64.png",
        "128": "img\/icon_128.png"
    }
}