Youtube Tags

Find tags of youtube video tags

O que é Youtube Tags?

Youtube Tags é uma extensão do Chrome desenvolvida por https://www.thebyteseffect.com, e sua principal característica é "Find tags of youtube video tags".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Youtube Tags

Baixe arquivos de extensão Youtube Tags no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Youtube Tags Youtube Tags
ID agbfjkmjmngmkfkioadpoeonohlcmiga
URL Oficial https://chromewebstore.google.com/detail/youtube-tags/agbfjkmjmngmkfkioadpoeonohlcmiga
Descrição Find tags of youtube video tags
Tamanho do Arquivo 43.96 KB
Contagem de Instalações 11,534
Versão Atual 2.1.5
Última Atualização 2022-09-04
Data de Publicação 2020-06-22
Classificação 4.28/5 Total de 305 Avaliações
Desenvolvedor https://www.thebyteseffect.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://thebyteseffect.com
Idiomas Suportados 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
}