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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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}" } } } |