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"
    ]
}