Youtube Tags

Find tags of youtube video tags

什么是Youtube Tags?

Youtube Tags是由https://www.thebyteseffect.com开发的Chrome扩展程序,该扩展的主要功能是“Find tags of youtube video tags”。

扩展截图

screenshot

下载Youtube Tags扩展crx文件

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

扩展使用说明

                        Youtube meta Tags are considered as an important factor in ranking of videos for a particular query.
There are times where you need to find the tags of popular videos to analyse. Now you can view the tags of the YouTube video you are watching with this extension. The only thing you need to do is to install this extension, then go to the YouTube video and below the video player, you can find the tags of the video are shown in the screenshot.                    

扩展基本信息

名称 Youtube Tags Youtube Tags
ID agbfjkmjmngmkfkioadpoeonohlcmiga
官方URL https://chromewebstore.google.com/detail/youtube-tags/agbfjkmjmngmkfkioadpoeonohlcmiga
简介 Find tags of youtube video tags
文件大小 43.96 KB
安装次数 11,534
当前版本 2.1.5
更新时间 2022-09-04
上架时间 2020-06-22
评分 4.28/5 共305次评分
开发者 https://www.thebyteseffect.com
电子邮箱 [email protected]
付费类型 free
扩展官网 https://thebyteseffect.com
支持的语言 en
manifest.json
{
    "name": "Youtube Tags",
    "description": "Find tags of youtube video tags",
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "2.1.5",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "name": "Find youtube video tags\/keywords for the video you are watching",
        "default_popup": "popup.html",
        "default_icon": {
            "16": "3.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "jquery.js",
                "contentScript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "1.png",
        "48": "2.png",
        "128": "3.png"
    },
    "web_accessible_resources": [
        "*.png",
        "*.PNG",
        "youtubekeyword.js"
    ],
    "permissions": [
        "*:\/\/*.youtube.com\/*"
    ],
    "manifest_version": 2
}