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.”。
擴展截圖
下載Karamel: View Reddit comments on YouTube™擴展crx文件
下載Karamel: View Reddit comments on YouTube™擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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. 擴展基本資訊
| 名稱 | |
| ID | halllmdjninjohpckldgkaolbhgkfnpe |
| 官方網址 | 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 |
| 電子郵箱 | [email protected] |
| 付費類型 | 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"
]
} | |