Trends v2 for YouTube™

Filter the trends how you like 'em.

Trends v2 for YouTube™란 무엇입니까?

Trends v2 for YouTube™은(는) https://lars.koelker.dev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Filter the trends how you like 'em."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Trends v2 for YouTube™ 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Trends v2 for YouTube™ allows you to filter the YouTube™ Trends.

You can either block channels by their channel name/id or by blocking specific buzzwords (e.g. "Corona"). Beside these possibilities you can also hide "Creators on the rise" and trend categories (e.g. "Music" or "Gaming").

For more information visit the website: https://lars.koelker.dev/extensions/yt-trends-v2/ 


"YouTube" and the "YouTube" logo are registered trademarks of Google, Inc. This extension is not endorsed or affiliated with Google, Inc. or YouTube in any way. Some icons provided by feathericons.com.                    

확장 프로그램 기본 정보

이름 Trends v2 for YouTube™ Trends v2 for YouTube™
ID fcnnfgfhgdfcmpmpjpmpehnplfdlmila
공식 URL https://chromewebstore.google.com/detail/trends-v2-for-youtube/fcnnfgfhgdfcmpmpjpmpehnplfdlmila
설명 Filter the trends how you like 'em.
파일 크기 48.48 KB
설치 횟수 196
현재 버전 1.0 beta
최근 업데이트 2023-11-06
출시 날짜 2020-05-05
평점 3.00/5 총 3 개의 평점
개발자 https://lars.koelker.dev
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://lars.koelker.dev/extensions/yt-trends-v2/
도움말 페이지 URL https://lars.koelker.dev/extensions/yt-trends-v2/
개인정보 보호 정책 페이지 URL https://lars.koelker.dev/privacy
지원되는 언어 de,en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "version": "1.0",
    "version_name": "1.0 beta",
    "description": "__MSG_extDesc__",
    "default_locale": "en",
    "homepage_url": "https:\/\/lars.koelker.dev\/extensions\/yt-trends-v2\/",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "permissions": [
        "storage",
        "unlimitedStorage",
        "activeTab",
        "notifications",
        "contextMenus"
    ],
    "optional_permissions": [
        "https:\/\/lars.koelker.dev\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "js\/trendsBtn.js",
                "js\/selectChannel.js"
            ],
            "css": [
                "css\/content.min.css"
            ]
        },
        {
            "matches": [
                "https:\/\/www.youtube.com\/feed\/trending*"
            ],
            "js": [
                "js\/trends.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/16x16.png",
            "32": "images\/32x32.png",
            "48": "images\/48x48.png",
            "128": "images\/128x128.png"
        }
    },
    "icons": {
        "16": "images\/16x16.png",
        "32": "images\/32x32.png",
        "48": "images\/48x48.png",
        "128": "images\/128x128.png"
    },
    "manifest_version": 2,
    "web_accessible_resources": [
        "manifest.json"
    ]
}