Karamel: View Reddit comments on YouTube™

Step up your viewing experience by embedding relevant Reddit comments under YouTube videos.

Karamel: View Reddit comments on YouTube™란 무엇입니까?

Karamel: View Reddit comments on YouTube™은(는) odensc에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Step up your viewing experience by embedding relevant Reddit comments under YouTube videos."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Karamel: View Reddit comments on YouTube™ 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Karamel is an open-source extension that adds Reddit comments to any YouTube videos you watch.

- View the comments for all posts on Reddit of the video you're watching
- Switch between YouTube and Reddit comments with a conveniently placed button 
- Upvote, reply to, and save comments on the same page!
- Supports dark and light theme
- Change the default comment mode and sort methods in the options
- Open-Source on GitHub: https://github.com/odensc/karamel

NOTE: This extension is in no way affiliated with YouTube, LLC; Google LLC; Reddit Inc.; or any company mentioned on this page.                    

확장 프로그램 기본 정보

이름 Karamel: View Reddit comments on YouTube™ Karamel: View Reddit comments on YouTube™
ID halllmdjninjohpckldgkaolbhgkfnpe
공식 URL https://chromewebstore.google.com/detail/karamel-view-reddit-comme/halllmdjninjohpckldgkaolbhgkfnpe
설명 Step up your viewing experience by embedding relevant Reddit comments under YouTube videos.
파일 크기 135 KB
설치 횟수 5,391
현재 버전 1.5.0
최근 업데이트 2021-10-09
출시 날짜 2019-06-03
평점 4.77/5 총 47 개의 평점
개발자 odensc
이메일 hello@odensc.com
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/odensc/karamel
도움말 페이지 URL https://github.com/odensc/karamel/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Karamel: View Reddit comments on YouTube\u2122",
    "short_name": "Karamel",
    "description": "Step up your viewing experience by embedding relevant Reddit comments under YouTube videos.",
    "version": "1.5.0",
    "browser_action": {
        "default_icon": "icon-48.png"
    },
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "index.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "permissions": [
        "https:\/\/www.reddit.com\/",
        "storage"
    ]
}