Show YouTube Video Tags (Advanced)

See all the Tags of a YouTube video. The extension also shows the total amount of tags and calculates the top 3 most used keywords.

什么是Show YouTube Video Tags (Advanced)?

Show YouTube Video Tags (Advanced)是由LenosTube开发的Chrome扩展程序,该扩展的主要功能是“See all the Tags of a YouTube video. The extension also shows the total amount of tags and calculates the top 3 most used keywords.”。

扩展截图

screenshot
screenshot
screenshot

下载Show YouTube Video Tags (Advanced)扩展crx文件

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

扩展使用说明

                        Behind YouTube success there is not just luck, promotion or content quality.

YouTube SEO plays also a role and, with this extension, you will see the secrets behind the most successful YouTube videos and channels.

Specifically, YouTube tags: the only metadata which is would not be otherwise visible, but which play an important role in YouTube ranking.

The extension will show you the tags used in every YouTube video, but it doesn't end there! It will also automatically calculate the top 3 most used keywords within all the tags.

Then, you can quickly copy them to eventually use them in your own video's tags.

And if your video content is not in english, no worries! We integrated a feature that allows you to enter any word that you want the "Top keywords" calculator to ignore. 

We hope this advanced YouTube Video Tags extension will help you to succeed!                    

扩展基本信息

名称 Show YouTube Video Tags (Advanced) Show YouTube Video Tags (Advanced)
ID jlimlbghmhifobdaampfgllomdldpmeg
官方URL https://chromewebstore.google.com/detail/show-youtube-video-tags-a/jlimlbghmhifobdaampfgllomdldpmeg
简介 See all the Tags of a YouTube video. The extension also shows the total amount of tags and calculates the top 3 most used keywords.
文件大小 106 KB
安装次数 35
当前版本 0.0.0.2
更新时间 2023-01-14
上架时间 2023-01-09
评分 5.00/5 共2次评分
开发者 LenosTube
电子邮箱 [email protected]
付费类型 free
扩展官网 https://www.lenostube.com/en/
帮助页面URL https://www.lenostube.com/en/support/
隐私政策页面URL https://www.lenostube.com/en/privacy-policy
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Show YouTube Video Tags (Advanced)",
    "version": "0.0.0.2",
    "description": "See all the Tags of a YouTube video. The extension also shows the total amount of tags and calculates the top 3 most used keywords.",
    "manifest_version": 3,
    "permissions": [
        "storage",
        "commands"
    ],
    "content_scripts": [
        {
            "js": [
                "lib\/jquery.js",
                "lib\/bootstrap.min.js",
                "inject.js"
            ],
            "css": [
                "css\/bootstrap.min.css",
                "css\/custom.css"
            ],
            "run_at": "document_idle",
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "commands": {
        "toggle-extension": {
            "suggested_key": "Ctrl+X",
            "description": "Toggle extension"
        }
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "logo.png",
            "32": "logo.png",
            "48": "logo.png",
            "128": "logo.png"
        }
    },
    "icons": {
        "16": "logo.png",
        "32": "logo.png",
        "48": "logo.png",
        "128": "logo.png"
    }
}