Youtube Tags
Find tags of youtube video tags
Youtube Tags là gì?
Youtube Tags là một tiện ích mở rộng Chrome được phát triển bởi https://www.thebyteseffect.com, và tính năng chính của nó là "Find tags of youtube video tags".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Youtube Tags
Tải xuống các tệp mở rộng Youtube Tags dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Youtube Tags |
ID | agbfjkmjmngmkfkioadpoeonohlcmiga |
URL Chính Thức | https://chromewebstore.google.com/detail/youtube-tags/agbfjkmjmngmkfkioadpoeonohlcmiga |
Mô tả | Find tags of youtube video tags |
Kích Thước Tệp | 43.96 KB |
Số Lần Cài Đặt | 11,534 |
Phiên Bản Hiện Tại | 2.1.5 |
Cập Nhật Lần Cuối | 2022-09-04 |
Ngày Phát Hành | 2020-06-22 |
Đánh Giá | 4.28/5 Tổng số 305 Đánh Giá |
Nhà Phát Triển | https://www.thebyteseffect.com |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://thebyteseffect.com |
Ngôn Ngữ Được Hỗ Trợ | 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 } |