Youtube Repeat

Save your preference once and it will repeat the video for your favourite songs

什麼是Youtube Repeat?

Youtube Repeat是由mercury200Hg開發的Chrome擴展程式,該擴展的主要功能是“Save your preference once and it will repeat the video for your favourite songs”。

擴展截圖

screenshot

下載Youtube Repeat擴展crx文件

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

擴展使用說明

                        Single repeat choice for all YouTube links.

- Just save your preference once and then enjoy repeated playback of your favorite songs and videos on YouTube without reloading your webpage or requirement to consume additional Internet usage.

Icons used are made by Freepick from www.flaticons.com                    

擴展基本資訊

名稱 Youtube Repeat Youtube Repeat
ID mbimaenpniemflhmhbahldkfppflbcjh
官方網址 https://chromewebstore.google.com/detail/youtube-repeat/mbimaenpniemflhmhbahldkfppflbcjh
簡介 Save your preference once and it will repeat the video for your favourite songs
檔案大小 8.63 KB
安裝次數 361
目前版本 1.0.0
更新時間 2017-03-12
上架時間 2017-03-12
評分 4.33/5 共 6 次評分
開發者 mercury200Hg
電子郵箱 [email protected]
付費類型 free
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Youtube Repeat",
    "browser_action": {
        "default_icon": "loop-arrow-32.png",
        "default_popup": "popup.html",
        "default_title": "Click repeat"
    },
    "description": "Save your preference once and it will repeat the video for your favourite songs",
    "icons": {
        "128": "loop-arrow-128.png",
        "32": "loop-arrow-32.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "content.js"
            ],
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "activeTab",
        "tabs",
        "webNavigation",
        "*:\/\/*.youtube.com\/*",
        "storage"
    ],
    "version": "1.0.0"
}