YouTube Tag Extractor
Displays all tags from YouTube video under the video header
O que é YouTube Tag Extractor?
YouTube Tag Extractor é uma extensão do Chrome desenvolvida por https://craide.com, e sua principal característica é "Displays all tags from YouTube video under the video header".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão YouTube Tag Extractor
Baixe arquivos de extensão YouTube Tag Extractor 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
The YouTube Tag Extractor extension is a handy way of extracting and revealing meta tags associated with any public video. Extracting YouTube Tags can be very insightful to understand how competitor videos and other high-performing videos are using these tags to boost their performance. YouTube tags are the hidden meta tags associated with videos on YouTube.
Informações Básicas da Extensão
Nome | YouTube Tag Extractor |
ID | aekopehcjaaehlmmlcgjnlfpplfhjkom |
URL Oficial | https://chromewebstore.google.com/detail/youtube-tag-extractor/aekopehcjaaehlmmlcgjnlfpplfhjkom |
Descrição | Displays all tags from YouTube video under the video header |
Tamanho do Arquivo | 10.55 KB |
Contagem de Instalações | 4,000 |
Versão Atual | 1.0.2 |
Última Atualização | 2022-11-23 |
Data de Publicação | 2022-02-18 |
Classificação | 5.00/5 Total de 5 Avaliações |
Desenvolvedor | https://craide.com |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://craide.com |
URL da Página de Ajuda | https://craide.userecho.com |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Tag Extractor", "action": [], "manifest_version": 3, "version": "1.0.2", "description": "Displays all tags from YouTube video under the video header", "author": "STAMUL, LLC", "permissions": [], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "css": [ "styles.css" ], "js": [ "content-script.js" ] } ], "web_accessible_resources": [ { "resources": [ "inject.js" ], "matches": [ "https:\/\/www.youtube.com\/*" ] } ], "icons": { "16": "icons\/icon-16x16.png", "48": "icons\/icon-48x48.png", "128": "icons\/icon-128x128.png" } } |