Reddit Comments for YouTube
Improve your YouTube experience by adding a Reddit comment section to the site!
什么是Reddit Comments for YouTube?
Reddit Comments for YouTube是由Taylor O'Neill开发的Chrome扩展程序,该扩展的主要功能是“Improve your YouTube experience by adding a Reddit comment section to the site!”。
扩展截图
下载Reddit Comments for YouTube扩展crx文件
下载Reddit Comments for YouTube扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | |
ID | oeehccpigolildhagkmlpofjplfajiam |
官方URL | https://chrome.google.com/webstore/detail/reddit-comments-for-youtu/oeehccpigolildhagkmlpofjplfajiam |
简介 | Improve your YouTube experience by adding a Reddit comment section to the site! |
文件大小 | 22.91 KB |
安装次数 | 4,000 |
当前版本 | 2.5.3 |
更新时间 | 2022-03-10 |
上架时间 | 2020-02-29 |
评分 | 4.71/5 共21次评分 |
开发者 | Taylor O'Neill |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/tayloroneill/Reddit-Comments-for-YouTube |
支持的语言 | 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}" } } } |