Reddit Comments for YouTube

Improve your YouTube experience by adding a Reddit comment section to the site!

Reddit Comments for YouTube là gì?

Reddit Comments for YouTube là một tiện ích mở rộng Chrome được phát triển bởi Taylor O'Neill, và tính năng chính của nó là "Improve your YouTube experience by adding a Reddit comment section to the site!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Reddit Comments for YouTube

Tải xuống các tệp mở rộng Reddit Comments for YouTube dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Reddit Comments for YouTube Reddit Comments for YouTube
ID oeehccpigolildhagkmlpofjplfajiam
URL Chính Thức https://chrome.google.com/webstore/detail/reddit-comments-for-youtu/oeehccpigolildhagkmlpofjplfajiam
Mô tả Improve your YouTube experience by adding a Reddit comment section to the site!
Kích Thước Tệp 22.91 KB
Số Lần Cài Đặt 4,000
Phiên Bản Hiện Tại 2.5.3
Cập Nhật Lần Cuối 2022-03-10
Ngày Phát Hành 2020-02-29
Đánh Giá 4.71/5 Tổng số 21 Đánh Giá
Nhà Phát Triển Taylor O'Neill
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/tayloroneill/Reddit-Comments-for-YouTube
Ngôn Ngữ Được Hỗ Trợ 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}"
        }
    }
}