YouTube Tag Extractor

Displays all tags from YouTube video under the video header

Was ist YouTube Tag Extractor?

YouTube Tag Extractor ist eine Chrome-Erweiterung, die von https://craide.com entwickelt wurde, und ihr Hauptmerkmal ist "Displays all tags from YouTube video under the video header".

Erweiterungsscreenshots

screenshot

YouTube Tag Extractor-Erweiterungs-CRX-Datei herunterladen

Laden Sie YouTube Tag Extractor-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name YouTube Tag Extractor YouTube Tag Extractor
ID aekopehcjaaehlmmlcgjnlfpplfhjkom
Offizielle URL https://chromewebstore.google.com/detail/youtube-tag-extractor/aekopehcjaaehlmmlcgjnlfpplfhjkom
Beschreibung Displays all tags from YouTube video under the video header
Dateigröße 10.55 KB
Installationsanzahl 4,000
Aktuelle Version 1.0.2
Letztes Update 2022-11-23
Veröffentlichungsdatum 2022-02-18
Bewertung 5.00/5 Insgesamt 5 Bewertungen
Entwickler https://craide.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://craide.com
Hilfeseite URL https://craide.userecho.com
Unterstützte Sprachen 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"
    }
}