YouTube Repeater

Repeats YouTube video after it ends.

什麼是YouTube Repeater?

YouTube Repeater是由shogo開發的Chrome擴展程式,該擴展的主要功能是“Repeats YouTube video after it ends.”。

擴展截圖

screenshot

下載YouTube Repeater擴展crx文件

下載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
官方網址 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"
    ]
}