Reddit Comments for YouTube
Improve your YouTube experience by adding a Reddit comment section to the site!
What is Reddit Comments for YouTube?
Reddit Comments for YouTube is a Chrome extension developed by Taylor O'Neill, and its main feature is "Improve your YouTube experience by adding a Reddit comment section to the site!".
Extension Screenshots
Download Reddit Comments for YouTube Extension CRX File
Download Reddit Comments for YouTube extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This extension: - Works with the new YouTube layout - Is actively being updated - Supports voting and commenting - Allows you to blacklist subreddits - Is open source This is a fork of Lucien Maloney's extension for Chromium-based browsers and is not affiliated in any way with Reddit Inc. or YouTube, LLC.
Extension Basic Information
Name | |
ID | oeehccpigolildhagkmlpofjplfajiam |
Official URL | https://chrome.google.com/webstore/detail/reddit-comments-for-youtu/oeehccpigolildhagkmlpofjplfajiam |
Description | Improve your YouTube experience by adding a Reddit comment section to the site! |
File Size | 22.91 KB |
Installation Count | 4,000 |
Current Version | 2.5.3 |
Last Updated | 2022-03-10 |
Publish Date | 2020-02-29 |
Rating | 4.71/5 Total 21 Ratings |
Developer | Taylor O'Neill |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/tayloroneill/Reddit-Comments-for-YouTube |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_extensionName__", "description": "__MSG_extensionDescription__", "default_locale": "en", "version": "2.5.3", "permissions": [ "storage" ], "host_permissions": [ "*:\/\/www.youtube.com\/", "https:\/\/api.reddit.com\/" ], "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "index.js" ], "css": [ "thread.css" ], "run_at": "document_start" } ], "background": { "service_worker": "background.js" }, "icons": { "16": "16px_icon.png", "48": "48px_icon.png", "128": "128px_icon.png" }, "action": { "default_popup": "popup\/popup.html" }, "options_ui": { "page": "popup\/popup.html" }, "browser_specific_settings": { "gecko": { "id": "{cc2cbbd2-14d9-4260-b78d-ed166ca4e6cc}" } } } |