Simple YouTube Loop

Simple, clean way to loop a YouTube video.

Simple YouTube Loopとは何ですか?

Simple YouTube Loopはmihelcicによって開発されたChromeの拡張機能で、その主な機能は「Simple, clean way to loop a YouTube video.」です。

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

screenshot
screenshot

Simple YouTube Loop拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        This extension provides a simple YouTube loop button, on your HTML5 video controls bar. Nothing more.                    

拡張機能の基本情報

名前 Simple YouTube Loop Simple YouTube Loop
ID bfhmecnhdehblbnadegfpbmmbbobkjff
公式URL https://chromewebstore.google.com/detail/simple-youtube-loop/bfhmecnhdehblbnadegfpbmmbbobkjff
説明 Simple, clean way to loop a YouTube video.
ファイルサイズ 39.23 KB
インストール数 1,172
現在のバージョン 0.6
最終更新日 2017-09-07
公開日 2017-09-07
評価 4.58/5 合計 26 レビュー
開発者 mihelcic
支払い方法 free
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Simple YouTube Loop",
    "short_name": "YouTube Loop",
    "description": "Simple, clean way to loop a YouTube video.",
    "version": "0.6",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "js\/jq.js",
                "js\/content.js"
            ]
        }
    ],
    "icons": {
        "19": "images\/icon_19.png",
        "38": "images\/icon_38.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "js\/bg.js"
        ]
    },
    "page_action": {
        "default_icon": {
            "19": "images\/icon_19.png",
            "38": "images\/icon_38.png",
            "48": "images\/icon_48.png",
            "128": "images\/icon_128.png"
        },
        "default_title": "Simple YouTube Loop"
    },
    "permissions": [
        "tabs"
    ]
}