YouTube Repeater

Repeats YouTube video after it ends.

YouTube Repeaterคืออะไร?

YouTube Repeater เป็นส่วนขยายของ Chrome ที่พัฒนาโดย shogo และคุณลักษณะหลักของมันคือ "Repeats YouTube video after it ends."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube Repeater

ดาวน์โหลดไฟล์ส่วนขยาย YouTube Repeater ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ YouTube Repeater YouTube Repeater
ID lgffcdbnficjmckoidgcmcajeadoekgi
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/youtube-repeater/lgffcdbnficjmckoidgcmcajeadoekgi
คำอธิบาย Repeats YouTube video after it ends.
ขนาดไฟล์ 16.98 KB
จำนวนการติดตั้ง 423
เวอร์ชันปัจจุบัน 0.0.4
อัปเดตครั้งล่าสุด 2019-03-18
วันที่เผยแพร่ 2019-03-18
คะแนน 3.50/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา shogo
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://shogo.eu/
ภาษาที่รองรับ 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"
    ]
}