Youtube Tags
Find tags of youtube video tags
Τι είναι το Youtube Tags;
Το Youtube Tags είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://www.thebyteseffect.com, και η κύρια λειτουργία του είναι "Find tags of youtube video tags".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Youtube Tags
Λήψη αρχείων επέκτασης Youtube Tags σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Youtube Tags |
ID | agbfjkmjmngmkfkioadpoeonohlcmiga |
Επίσημο URL | https://chromewebstore.google.com/detail/youtube-tags/agbfjkmjmngmkfkioadpoeonohlcmiga |
Περιγραφή | Find tags of youtube video tags |
Μέγεθος Αρχείου | 43.96 KB |
Αριθμός Εγκαταστάσεων | 11,534 |
Τρέχουσα Έκδοση | 2.1.5 |
Τελευταία Ενημέρωση | 2022-09-04 |
Ημερομηνία Δημοσίευσης | 2020-06-22 |
Αξιολόγηση | 4.28/5 Συνολικά 305 Αξιολογήσεις |
Προγραμματιστής | https://www.thebyteseffect.com |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://thebyteseffect.com |
Υποστηριζόμενες Γλώσσες | 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 } |