Real Listen On Repeat

Repeat youtube videos

Real Listen On Repeatとは何ですか?

Real Listen On Repeatはhttps://miltonlaufer.com.arによって開発されたChromeの拡張機能で、その主な機能は「Repeat youtube videos」です。

拡張機能のスクリーンショット

screenshot
screenshot

Real Listen On Repeat拡張機能のCRXファイルをダウンロード

Real Listen On Repeat拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        A simple button to listen Youtube videos on repeat                    

拡張機能の基本情報

名前 Real Listen On Repeat Real Listen On Repeat
ID ignbdlcbpccodmdokjdkjfoebimbkpfc
公式URL https://chromewebstore.google.com/detail/real-listen-on-repeat/ignbdlcbpccodmdokjdkjfoebimbkpfc
説明 Repeat youtube videos
ファイルサイズ 8.98 KB
インストール数 89
現在のバージョン 0.0.5.1
最終更新日 2017-12-08
公開日 2017-12-07
評価 5.00/5 合計 1 レビュー
開発者 https://miltonlaufer.com.ar
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Real Listen On Repeat",
    "short_name": "RealListenOnRepeat",
    "description": "Repeat youtube videos",
    "version": "0.0.5.1",
    "manifest_version": 2,
    "author": "@onwhatthereis",
    "permissions": [
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "name": "Click to set on\/off the Youtube Repeat mode"
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "64": "icon64.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.youtube.com\/*",
                "https:\/\/www.youtube.com\/*"
            ],
            "run_at": "document_start",
            "js": [
                "myscript.js"
            ]
        }
    ]
}