YouTube Repeater

Repeats YouTube video after it ends.

YouTube Repeater là gì?

YouTube Repeater là một tiện ích mở rộng Chrome được phát triển bởi shogo, và tính năng chính của nó là "Repeats YouTube video after it ends.".

Ả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 YouTube Repeater

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

                        You can make your YouTube video repeat automatically right from the page.
- No external link
- No need for playlists
- Repeat infinitely with just 1 click

----- v.0.0.4 -----
Fixed the extension to work with the new YouTube design from fall 2018
----- v.0.0.3 -----
Fixed the icon to show inactive when on non-youtube pages.
----- v.0.0.2 -----
Fixed icon to show the repeat status when tabs are switched.                    

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

Tên YouTube Repeater YouTube Repeater
ID lgffcdbnficjmckoidgcmcajeadoekgi
URL Chính Thức https://chrome.google.com/webstore/detail/youtube-repeater/lgffcdbnficjmckoidgcmcajeadoekgi
Mô tả Repeats YouTube video after it ends.
Kích Thước Tệp 16.98 KB
Số Lần Cài Đặt 423
Phiên Bản Hiện Tại 0.0.4
Cập Nhật Lần Cuối 2019-03-18
Ngày Phát Hành 2019-03-18
Đánh Giá 3.50/5 Tổng số 4 Đánh Giá
Nhà Phát Triển shogo
Loại Thanh Toán free
Trang Web Mở Rộng http://shogo.eu/
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Repeater",
    "description": "Repeats YouTube video after it ends.",
    "version": "0.0.4",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_icon": "icon.png"
    },
    "permissions": [
        "tabs",
        "notifications",
        "webNavigation"
    ]
}