ComOn com!

Show coms in YouTube videos in realtime by retrieving timestamps

ComOn com! là gì?

ComOn com! là một tiện ích mở rộng Chrome được phát triển bởi https://slals.io, và tính năng chính của nó là "Show coms in YouTube videos in realtime by retrieving timestamps".

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

screenshot

Tải xuống tệp CRX của tiện ích mở rộng ComOn com!

Tải xuống các tệp mở rộng ComOn com! 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

                        Show YouTube comments in the video while watching.

It's a prototype, feel free to bring some ideas for this project here :

https://github.com/Slaals/comoncom

How to :

- Install it,
- Watch You Tube videos,
- Enjoy

Issue / Todo :

- Doesn't work in full screen,
- Doesn't have any waiting list, it only shows the first comments it found,
- Only get 100 comments (API limitation).                    

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

Tên ComOn com! ComOn com!
ID nfmkbcjacdnbdnedcbnmecdcedoijpna
URL Chính Thức https://chromewebstore.google.com/detail/comon-com/nfmkbcjacdnbdnedcbnmecdcedoijpna
Mô tả Show coms in YouTube videos in realtime by retrieving timestamps
Kích Thước Tệp 32.63 KB
Số Lần Cài Đặt 46
Phiên Bản Hiện Tại 1.3.3
Cập Nhật Lần Cuối 2017-02-07
Ngày Phát Hành 2017-02-07
Đánh Giá 3.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển https://slals.io
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.youtube.com/watch?v=S_P2noWHyzo
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ComOn com!",
    "description": "Show coms in YouTube videos in realtime by retrieving timestamps",
    "version": "1.3.3",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "comon_on.png",
        "default_title": "Comon"
    },
    "content_security_policy": "script-src 'self' https:\/\/apis.google.com; object-src 'self'",
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs",
        "activeTab",
        "https:\/\/www.youtube.com\/watch*",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "com.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_idle"
        }
    ]
}