Yt-Music skip heard

It automatically adjusts the playlist so you do not hear the songs you have heard on YouTube Music within 2 hours.

Yt-Music skip heard란 무엇입니까?

Yt-Music skip heard은(는) 1cktmdgh2에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "It automatically adjusts the playlist so you do not hear the songs you have heard on YouTube Music within 2 hours."입니다.

확장 프로그램 스크린샷

screenshot

Yt-Music skip heard 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        유튜브 뮤직에서 2시간 내에 들었던 노래를 자동으로 플레이리스트에서 삭제합니다.

To avoid replaying songs you've heard on YouTube Music, songs you've heard within 2 hours are automatically deleted if they're in the playlist.
If you want to listen to the song you have listened to again, you can listen to it without deleting it by clicking "Play to the next song" or "Play".

This script is executed whenever the song being played changes.

Also, do not do anything when a song is deleted from the playlist.
It may be a little slower while being deleted.                    

확장 프로그램 기본 정보

이름 Yt-Music skip heard Yt-Music skip heard
ID idmkcmdgldbpepoakppkconjhjecjopc
공식 URL https://chromewebstore.google.com/detail/yt-music-skip-heard/idmkcmdgldbpepoakppkconjhjecjopc
설명 It automatically adjusts the playlist so you do not hear the songs you have heard on YouTube Music within 2 hours.
파일 크기 3.18 MB
설치 횟수 148
현재 버전 1.0.8
최근 업데이트 2022-04-14
출시 날짜 2021-03-18
평점 4.67/5 총 3 개의 평점
개발자 1cktmdgh2
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Sh031224/Yt-Music-skip-heard
도움말 페이지 URL https://github.com/Sh031224/Yt-Music-skip-heard/issues/new
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Yt-Music skip heard",
    "description": "It automatically adjusts the playlist so you do not hear the songs you have heard on YouTube Music within 2 hours.",
    "version": "1.0.8",
    "short_name": "Yt-Music skip heard",
    "permissions": [
        "https:\/\/music.youtube.com\/*",
        "http:\/\/music.youtube.com\/*"
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "*:\/\/music.youtube.com\/*"
            ],
            "js": [
                "yt-music-skip.js"
            ],
            "css": [
                "toggle.css"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "index.html"
    },
    "content_security_policy": "script-src 'self' 'sha256-f+8EsNL7R4vhXPDhKOst5Sj\/MBLM+TYAak2h9szImDE='; object-src 'self'"
}