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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Step up your viewing experience by embedding relevant Reddit comments under YouTube videos."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Karamel: View Reddit comments on YouTube™ एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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™ |
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 |
ईमेल | [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" ] } |