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™ là gì?
Karamel: View Reddit comments on YouTube™ là một tiện ích mở rộng Chrome được phát triển bởi odensc, và tính năng chính của nó là "Step up your viewing experience by embedding relevant Reddit comments under YouTube videos.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Karamel: View Reddit comments on YouTube™
Tải xuống các tệp mở rộng Karamel: View Reddit comments on YouTube™ dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Karamel: View Reddit comments on YouTube™ |
ID | halllmdjninjohpckldgkaolbhgkfnpe |
URL Chính Thức | https://chromewebstore.google.com/detail/karamel-view-reddit-comme/halllmdjninjohpckldgkaolbhgkfnpe |
Mô tả | Step up your viewing experience by embedding relevant Reddit comments under YouTube videos. |
Kích Thước Tệp | 135 KB |
Số Lần Cài Đặt | 5,391 |
Phiên Bản Hiện Tại | 1.5.0 |
Cập Nhật Lần Cuối | 2021-10-09 |
Ngày Phát Hành | 2019-06-03 |
Đánh Giá | 4.77/5 Tổng số 47 Đánh Giá |
Nhà Phát Triển | odensc |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/odensc/karamel |
URL Trang Trợ Giúp | https://github.com/odensc/karamel/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |