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文件

下載Yt-Music skip heard擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        유튜브 뮤직에서 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
官方網址 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'"
}