Auto Replay YouTube™ Videos

Auto replay your favorite youtube videos in a loop with zero clicks!

Auto Replay YouTube™ Videos là gì?

Auto Replay YouTube™ Videos là một tiện ích mở rộng Chrome được phát triển bởi https://opensourceforgeeks.blogspot.com, và tính năng chính của nó là "Auto replay your favorite youtube videos in a loop with zero clicks!".

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

Tải xuống tệp CRX của tiện ích mở rộng Auto Replay YouTube™ Videos

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

                        * Replay your favorite youtube videos automatically with 0 clicks.
* Optional settings to turn off the auto looping behavior in a single click.
* Easy to use extension with visibility limited to youtube only.
* Auto play setting is changed based on looping status.                    

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

Tên Auto Replay YouTube™ Videos Auto Replay YouTube™ Videos
ID mepicphbpehnpdkmnphaepbglimkeedp
URL Chính Thức https://chromewebstore.google.com/detail/auto-replay-youtube-video/mepicphbpehnpdkmnphaepbglimkeedp
Mô tả Auto replay your favorite youtube videos in a loop with zero clicks!
Kích Thước Tệp 72.76 KB
Số Lần Cài Đặt 682
Phiên Bản Hiện Tại 0.0.3
Cập Nhật Lần Cuối 2018-02-28
Ngày Phát Hành 2018-02-27
Đánh Giá 4.43/5 Tổng số 7 Đánh Giá
Nhà Phát Triển https://opensourceforgeeks.blogspot.com
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Auto Replay YouTube\u2122 Videos",
    "version": "0.0.3",
    "manifest_version": 2,
    "description": "Auto replay your favorite youtube videos in a loop with zero clicks!",
    "icons": {
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "page_action": {
        "default_icon": "icon-19.png",
        "default_title": "Toggle YouTube replay"
    },
    "background": {
        "scripts": [
            "jquery-1.7.1.min.js",
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "declarativeContent",
        "activeTab",
        "notifications"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "jquery-1.7.1.min.js",
                "waitForKeyElements.js",
                "contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ]
}