Karamel: View Reddit comments on YouTube™
Step up your viewing experience by embedding relevant Reddit comments under YouTube videos.
Qu'est-ce que Karamel: View Reddit comments on YouTube™ ?
Karamel: View Reddit comments on YouTube™ est une extension Chrome développée par odensc, et sa fonction principale est "Step up your viewing experience by embedding relevant Reddit comments under YouTube videos.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Karamel: View Reddit comments on YouTube™
Téléchargez les fichiers d'extension Karamel: View Reddit comments on YouTube™ au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Karamel: View Reddit comments on YouTube™ |
ID | halllmdjninjohpckldgkaolbhgkfnpe |
URL Officiel | https://chromewebstore.google.com/detail/karamel-view-reddit-comme/halllmdjninjohpckldgkaolbhgkfnpe |
Description | Step up your viewing experience by embedding relevant Reddit comments under YouTube videos. |
Taille du Fichier | 135 KB |
Nombre d'Installations | 5,391 |
Version Actuelle | 1.5.0 |
Dernière Mise à Jour | 2021-10-09 |
Date de Publication | 2019-06-03 |
Évaluation | 4.77/5 Total 47 Évaluations |
Développeur | odensc |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/odensc/karamel |
URL de la Page d'Aide | https://github.com/odensc/karamel/issues |
Langues Prises en Charge | 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" ] } |