Youtube Relist

Lists youtube videos that are unlisted.

What is Youtube Relist?

Youtube Relist is a Chrome extension developed by http://fwra.me, and its main feature is "Lists youtube videos that are unlisted.".

Download Youtube Relist Extension CRX File

Download Youtube Relist extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Youtube Relist Youtube Relist
ID cjmpedjkkpihnongpkgkmjiemmpjhndi
Official URL https://chrome.google.com/webstore/detail/youtube-relist/cjmpedjkkpihnongpkgkmjiemmpjhndi
Description Lists youtube videos that are unlisted.
File Size 39.02 KB
Installation Count 368
Current Version 1.0
Last Updated 2017-10-25
Publish Date 2017-10-25
Rating 2.33/5 Total 6 Ratings
Developer http://fwra.me
Payment Type free
Extension Website http://yr.fwra.me/
Supported Languages 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"
        }
    ]
}