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 |
Eメール | [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}" } } } |