Subscription Feed Filter for YouTube

Filters such as Live, Streamed, Video, and Keyword search can be added to Subscriptions, Playlists, and other YouTube pages.

Subscription Feed Filter for YouTube란 무엇입니까?

Subscription Feed Filter for YouTube은(는) Simple and Tiny Utilities에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Filters such as Live, Streamed, Video, and Keyword search can be added to Subscriptions, Playlists, and other YouTube pages."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Subscription Feed Filter for YouTube 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Provides a filter like YouTube home screen on pages such as subscriptions and libraries.

Filters: Live, Streamed, Video, Shorts, Scheduled, Notification on, Notification off, Unwatched, Watched

Keyword search: It can be combined with other filters.                    

확장 프로그램 기본 정보

이름 Subscription Feed Filter for YouTube Subscription Feed Filter for YouTube
ID jpdngflnlekafjhdlcnijphhcmeibdoa
공식 URL https://chromewebstore.google.com/detail/subscription-feed-filter/jpdngflnlekafjhdlcnijphhcmeibdoa
설명 Filters such as Live, Streamed, Video, and Keyword search can be added to Subscriptions, Playlists, and other YouTube pages.
파일 크기 72.41 KB
설치 횟수 265
현재 버전 1.31.0
최근 업데이트 2024-02-25
출시 날짜 2022-07-05
평점 4.20/5 총 5 개의 평점
개발자 Simple and Tiny Utilities
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/yudai-tiny-developer/filter
지원되는 언어 id,de,en,en-GB,en-US,fil,fr,es,es-419,it,pt-BR,pt-PT,th,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Subscription Feed Filter for YouTube",
    "version": "1.31.0",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ],
            "run_at": "document_end",
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "lang\/*.js",
                "common.js",
                "settings.js",
                "progress.js"
            ],
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "popup.html",
        "open_in_tab": true
    },
    "permissions": [
        "storage"
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "{7d37f4c3-c6cf-4b18-a748-ed4a6e7eb281}"
        }
    }
}