YouTube Repeater

Adds a button to YouTube videos to toggle auto-repeat.

YouTube Repeaterคืออะไร?

YouTube Repeater เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://devinrousso.com และคุณลักษณะหลักของมันคือ "Adds a button to YouTube videos to toggle auto-repeat."

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

screenshot

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

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

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

                        Version 2.0:
 - Now works with the new YouTube interface
 - Repeat start/end timer now automatically resets on new video
 - If the value of the start/end input box is not a number, simply hovering over the repeat icon will reset its value to default
 - Typing numbers into the start/end input will no longer jump the current time of the video

Version 1.5:
 - You can now send repeats to friends with this plugin installed by adding #r=true to the video's URL
    - For more control, add &rs=### and &re=### for the start and end times of the repeat
    - This will automatically be added to the URL when enabling repeat via the button under the video
 - When the start/end/loops input is selected, pressing enter will activate repeat with the current values
 - Changing the start/end times when repeat is active now updates the URL

Version 1.4:
 - Fixed Tooltip positioning (response to YouTube update)
 - Added option to set number of loops when repeating
    - Set to any value less than 1 to infinitely repeat or don't change the default value

Version 1.3:
 - Start/End times are now updated when the enter key is pressed

Version 1.2:
 - Added ability to choose repeat start and end times
    - Defaults to start and end of video
 - Actually fixed Tooltip placement (for real this time)

Version 1.1:
 - Fixed Tooltip Placement

Version 1.0:
 - Created Extension
 - Includes mouseover tooltip                    

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

ชื่อ YouTube Repeater YouTube Repeater
ID ihlfngkojddkjkdlmgkbdpkfkafclhnj
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/youtube-repeater/ihlfngkojddkjkdlmgkbdpkfkafclhnj
คำอธิบาย Adds a button to YouTube videos to toggle auto-repeat.
ขนาดไฟล์ 37.34 KB
จำนวนการติดตั้ง 1,000
เวอร์ชันปัจจุบัน 2.0.6
อัปเดตครั้งล่าสุด 2016-08-14
วันที่เผยแพร่ 2016-08-14
คะแนน 3.26/5 รวมทั้งหมด 38 คะแนน
ผู้พัฒนา http://devinrousso.com
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://github.com/dcrousso/YouTube-Repeater/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "version": "2.0.6",
    "default_locale": "en",
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.youtube.com\/*",
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "scripts\/repeat.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "images\/repeat.png",
        "images\/repeat-active.png"
    ]
}