Youtube Relist

Lists youtube videos that are unlisted.

什么是Youtube Relist?

Youtube Relist是由http://fwra.me开发的Chrome扩展程序,该扩展的主要功能是“Lists youtube videos that are unlisted.”。

下载Youtube Relist扩展crx文件

下载Youtube Relist扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This extension is needed to help add unlisted videos to the database. Head to http://yr.fwra.me/ to search for unlisted videos.                    

扩展基本信息

名称 Youtube Relist Youtube Relist
ID cjmpedjkkpihnongpkgkmjiemmpjhndi
官方URL https://chrome.google.com/webstore/detail/youtube-relist/cjmpedjkkpihnongpkgkmjiemmpjhndi
简介 Lists youtube videos that are unlisted.
文件大小 39.02 KB
安装次数 368
当前版本 1.0
更新时间 2017-10-25
上架时间 2017-10-25
评分 2.33/5 共6次评分
开发者 http://fwra.me
付费类型 free
扩展官网 http://yr.fwra.me/
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Youtube Relist",
    "description": "Lists youtube videos that are unlisted.",
    "version": "1.0",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Youtube Relist"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/watch?*"
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "videoScript.js"
            ]
        },
        {
            "matches": [
                "http:\/\/yr.fwra.me\/"
            ],
            "js": [
                "checker.js"
            ],
            "run_at": "document_end"
        }
    ]
}