TTFA Repeat or Loop for Youtube Videos
A simple extension to repeat or loop Youtube videos
什么是TTFA Repeat or Loop for Youtube Videos?
TTFA Repeat or Loop for Youtube Videos是由https://www.techtipsforall.com开发的Chrome扩展程序,该扩展的主要功能是“A simple extension to repeat or loop Youtube videos”。
扩展截图
下载TTFA Repeat or Loop for Youtube Videos扩展crx文件
下载TTFA Repeat or Loop for Youtube Videos扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
                        A simple extension to repeat or loop Youtube videos from one specific point to another.                     扩展基本信息
| 名称 |   |  
| ID | bkblfjclpnkdmichcdfnppjdhcpehdag | 
| 官方URL | https://chromewebstore.google.com/detail/ttfa-repeat-or-loop-for-y/bkblfjclpnkdmichcdfnppjdhcpehdag | 
| 简介 | A simple extension to repeat or loop Youtube videos | 
| 文件大小 | 150 KB | 
| 安装次数 | 14 | 
| 当前版本 | 1.1 | 
| 更新时间 | 2013-11-02 | 
| 上架时间 | 2013-11-02 | 
| 开发者 | https://www.techtipsforall.com | 
| 付费类型 | free | 
| 帮助页面URL | http://www.techtipsforall.com/2013/10/how-to-repeat-or-loop-youtube-videos.html | 
| 支持的语言 | en | 
| manifest.json | |
 {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TTFA Repeat or Loop for Youtube Videos",
    "version": "1.1",
    "manifest_version": 2,
    "description": "A simple extension to repeat or loop Youtube videos",
    "icons": {
        "16": "myicon.png",
        "48": "Tech Tips For All_48.png",
        "128": "Tech Tips For All_128.png"
    },
    "browser_action": {
        "default_icon": "myicon.png",
        "default_title": "TTFA Repeat or Loop for Youtube Videos",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs"
    ],
    "content_security_policy": "script-src 'self' https:\/\/apis.google.com;  object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/watch*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "pagescript.js",
        "jquery-1.10.2.js"
    ]
}  |  |