YouTube Tag Extractor
Displays all tags from YouTube video under the video header
Cos'è YouTube Tag Extractor?
YouTube Tag Extractor è un'estensione di Chrome sviluppata da https://craide.com, e la sua funzione principale è "Displays all tags from YouTube video under the video header".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione YouTube Tag Extractor
Scarica i file di estensione YouTube Tag Extractor in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | YouTube Tag Extractor |
ID | aekopehcjaaehlmmlcgjnlfpplfhjkom |
URL Ufficiale | https://chromewebstore.google.com/detail/youtube-tag-extractor/aekopehcjaaehlmmlcgjnlfpplfhjkom |
Descrizione | Displays all tags from YouTube video under the video header |
Dimensione del File | 10.55 KB |
Conteggio Installazioni | 4,000 |
Versione Corrente | 1.0.2 |
Ultimo Aggiornamento | 2022-11-23 |
Data di Pubblicazione | 2022-02-18 |
Valutazione | 5.00/5 Totale 5 Valutazioni |
Sviluppatore | https://craide.com |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://craide.com |
URL della Pagina di Aiuto | https://craide.userecho.com |
Lingue Supportate | 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" } } |