YouLoop

Put YouTube videos on loop with one click

什麼是YouLoop?

YouLoop是由Marko Kajzer開發的Chrome擴展程式,該擴展的主要功能是“Put YouTube videos on loop with one click”。

擴展截圖

screenshot
screenshot

下載YouLoop擴展crx文件

下載YouLoop擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        ♫ Enjoy Music ♫

Loop your favorite YouTube videos. Just click the new loop icon next to the other YouTube video control icons while watching a YouTube video - the icon rotates and turns red indicating that the current YouTube video will be repeated. You can stop looping by pressing on the icon again.

So why choose this extension instead of the others?
• Much smaller than other extensions (<= 30kB vs. >= 100kB)
• No support for Flash player which is old and deprecated. Let's help remove Flash Player from the internet!
• Low memory usage since it is just a script.
• Fancy animations!
• Vanilla JavaScript only!
• Other extensions of the same kind include unnecessary code and the code base is very messy.

• If you have any problems or suggestions, feel free to click on "Support" and shoot me a question.
• If you like this extension, please consider rating it.                    

擴展基本資訊

名稱 YouLoop YouLoop
ID fbeahjcnoclflfhkgphfadjldhfadncl
官方網址 https://chromewebstore.google.com/detail/youloop/fbeahjcnoclflfhkgphfadjldhfadncl
簡介 Put YouTube videos on loop with one click
檔案大小 27.7 KB
安裝次數 1,686
目前版本 0.7.0
更新時間 2021-08-05
上架時間 2018-09-11
評分 4.82/5 共 33 次評分
開發者 Marko Kajzer
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/markokajzer/youloop
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "author": "Marko Kajzer",
    "name": "YouLoop",
    "version": "0.7.0",
    "description": "Put YouTube videos on loop with one click",
    "icons": {
        "19": "icons\/icon_19px.png",
        "32": "icons\/icon_32px.png",
        "38": "icons\/icon_38px.png",
        "48": "icons\/icon_48px.png",
        "128": "icons\/icon_128px.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.youtube.com\/*",
                "https:\/\/www.youtube.com\/*"
            ],
            "css": [
                "styles\/youloop.css"
            ],
            "js": [
                "js\/content_script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": []
}