Youtube Tags

Find tags of youtube video tags

Was ist Youtube Tags?

Youtube Tags ist eine Chrome-Erweiterung, die von https://www.thebyteseffect.com entwickelt wurde, und ihr Hauptmerkmal ist "Find tags of youtube video tags".

Erweiterungsscreenshots

screenshot

Youtube Tags-Erweiterungs-CRX-Datei herunterladen

Laden Sie Youtube Tags-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

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Youtube Tags Youtube Tags
ID agbfjkmjmngmkfkioadpoeonohlcmiga
Offizielle URL https://chromewebstore.google.com/detail/youtube-tags/agbfjkmjmngmkfkioadpoeonohlcmiga
Beschreibung Find tags of youtube video tags
Dateigröße 43.96 KB
Installationsanzahl 11,534
Aktuelle Version 2.1.5
Letztes Update 2022-09-04
Veröffentlichungsdatum 2020-06-22
Bewertung 4.28/5 Insgesamt 305 Bewertungen
Entwickler https://www.thebyteseffect.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://thebyteseffect.com
Unterstützte Sprachen 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
}