YouTube++

This extension shows the publishing or uploading date of related youtube videos in sidebar.

什么是YouTube++?

YouTube++是由divyum开发的Chrome扩展程序,该扩展的主要功能是“This extension shows the publishing or uploading date of related youtube videos in sidebar.”。

扩展截图

screenshot
screenshot

下载YouTube++扩展crx文件

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

扩展使用说明

                        Ever wondered if you could get the published date of related videos without even opening the videos in youtube, here is an extension which will solve this for you.                    

扩展基本信息

名称 YouTube++ YouTube++
ID mbaflkdlneldejanggphlhcepncjfaco
官方URL https://chromewebstore.google.com/detail/youtube++/mbaflkdlneldejanggphlhcepncjfaco
简介 This extension shows the publishing or uploading date of related youtube videos in sidebar.
文件大小 229 KB
安装次数 2,716
当前版本 2.3.2
更新时间 2019-11-12
上架时间 2019-11-11
评分 3.77/5 共52次评分
开发者 divyum
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube++",
    "short_name": "YTD",
    "description": "This extension shows the publishing or uploading date of related youtube videos in sidebar.",
    "version": "2.3.2",
    "icons": {
        "48": "image\/icon48.png",
        "128": "image\/icon128.png"
    },
    "permissions": [
        "tabs"
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*",
                "http:\/\/www.youtube.com\/*"
            ],
            "js": [
                "js\/main.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "image\/loader_gif.gif"
    ]
}