Threads for YouTube

Reddit comments on YouTube.

Threads for YouTube란 무엇입니까?

Threads for YouTube은(는) a-bravo에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Reddit comments on YouTube."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Threads for YouTube 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        You can switch between a YouTube video's related Reddit posts, Reddit comments, and YouTube comments.

Features:
    - Works for all YT videos (private, deleted, etc)
    - List all Reddit posts related to the current video
        - Sort posts
        - Easily go to each post's linked timestamp (if present)
        - Blacklist subreddits
    - View each post's comments 
        - Sort comments
        - Easily collapse comments
        - Hide/Show all child comments
        - Option to auto collapse 'stickied' u/AutoModerator comments
    - Compatible with YouTube's dark mode
    - Switches to Youtube comments if no reddit comments are found
    - Change any default settings in the options
    - Available on Chrome & Firefox

Upcoming Features:
    - Log in to save, upvote, post, comment
    - Internationalize extension and store listings

Threads for YouTube doesn't show ads and doesn't send user's data anywhere (it does use the YouTube video ID to get Reddit posts/comments). It is fully open-source (https://github.com/a-bravo/threads-for-youtube). Contributions are welcome!

*** If you have any problems or feature requests, submit them to the bug tracker (https://github.com/a-bravo/threads-for-youtube/issues). ***

----------

Permissions explained:
    - youtube.com: required in order to add Reddit comments to YouTube pages
    - reddit.com: required in order to access Reddit's api                    

확장 프로그램 기본 정보

이름 Threads for YouTube Threads for YouTube
ID npbmhogimiolmklafhlpbifkjinoadkh
공식 URL https://chromewebstore.google.com/detail/threads-for-youtube/npbmhogimiolmklafhlpbifkjinoadkh
설명 Reddit comments on YouTube.
파일 크기 103 KB
설치 횟수 26
현재 버전 0.13.0
최근 업데이트 2023-10-12
출시 날짜 2020-04-20
평점 5.00/5 총 1 개의 평점
개발자 a-bravo
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/a-bravo/threads-for-youtube#readme
도움말 페이지 URL https://github.com/a-bravo/threads-for-youtube/issues
개인정보 보호 정책 페이지 URL https://github.com/a-bravo/threads-for-youtube/blob/master/PRIVACY.md
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Threads for YouTube",
    "short_name": "TFY",
    "version": "0.13.0",
    "description": "Reddit comments on YouTube.",
    "homepage_url": "https:\/\/github.com\/a-bravo\/threads-for-youtube#readme",
    "icons": {
        "16": "icons\/[email protected]",
        "32": "icons\/[email protected]",
        "48": "icons\/[email protected]",
        "96": "icons\/[email protected]",
        "128": "icons\/[email protected]"
    },
    "web_accessible_resources": [
        "images\/*.png"
    ],
    "minimum_chrome_version": "43",
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "53.0"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content_script.bundle.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "background": {
        "scripts": [
            "background.bundle.js"
        ]
    },
    "permissions": [
        "storage",
        "https:\/\/*.reddit.com\/*"
    ],
    "options_ui": {
        "page": "options\/index.html",
        "open_in_tab": true
    }
}