ASMR filter for Youtube

Adds a button to quicly filter ASMR videos into or out of the Youtube website.

什麼是ASMR filter for Youtube?

ASMR filter for Youtube是由duri93開發的Chrome擴展程式,該擴展的主要功能是“Adds a button to quicly filter ASMR videos into or out of the Youtube website.”。

擴展截圖

screenshot

下載ASMR filter for Youtube擴展crx文件

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

擴展使用說明

                        Do you use Youtube for both regular and ASMR videos? Are you tired of having ASMR videos mixed with the regular ones? If so, this extension is for you!

"ASMR filter for Youtube" adds a new button near the Youtube logo. With it, you can quickly choose to hide either category of videos (ASMR or non-ASMR), instantly switching between regular, ASMR-free or ASMR-only versions of Youtube.

It acts on:
- homepage, explore, subscriptions pages
- channel pages
- correlated videos 
- the wall that appears at the end of each video
- playlists and subscriptions on the leftside menu
- playlist contents (in the "visualize playlist" page)

ASMR content is identified by looking for the "ASMR" string, either in the video title or channel name. To my experience, this correctly identifies all elements.                    

擴展基本資訊

名稱 ASMR filter for Youtube ASMR filter for Youtube
ID ickdeonllbpdejpefgocidjbkbplmikd
官方網址 https://chromewebstore.google.com/detail/asmr-filter-for-youtube/ickdeonllbpdejpefgocidjbkbplmikd
簡介 Adds a button to quicly filter ASMR videos into or out of the Youtube website.
檔案大小 23.5 KB
安裝次數 132
目前版本 1.00
更新時間 2021-11-07
上架時間 2021-11-07
評分 5.00/5 共 2 次評分
開發者 duri93
電子郵箱 [email protected]
付費類型 free
支援的語言 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ASMR filter for Youtube",
    "description": "Adds a button to quicly filter ASMR videos into or out of the Youtube website.",
    "author": "duri93",
    "version": "1.00",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "button.js",
                "content.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "icons": {
        "16": "\/icons\/icon-16.png",
        "24": "\/icons\/icon-24.png",
        "32": "\/icons\/icon-32.png",
        "48": "\/icons\/icon-48.png",
        "128": "\/icons\/icon-128.png"
    }
}