Show YouTube Video Tags (Advanced)
See all the Tags of a YouTube video. The extension also shows the total amount of tags and calculates the top 3 most used keywords.
Show YouTube Video Tags (Advanced)란 무엇입니까?
Show YouTube Video Tags (Advanced)은(는) LenosTube에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "See all the Tags of a YouTube video. The extension also shows the total amount of tags and calculates the top 3 most used keywords."입니다.
확장 프로그램 스크린샷
Show YouTube Video Tags (Advanced) 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Behind YouTube success there is not just luck, promotion or content quality. YouTube SEO plays also a role and, with this extension, you will see the secrets behind the most successful YouTube videos and channels. Specifically, YouTube tags: the only metadata which is would not be otherwise visible, but which play an important role in YouTube ranking. The extension will show you the tags used in every YouTube video, but it doesn't end there! It will also automatically calculate the top 3 most used keywords within all the tags. Then, you can quickly copy them to eventually use them in your own video's tags. And if your video content is not in english, no worries! We integrated a feature that allows you to enter any word that you want the "Top keywords" calculator to ignore. We hope this advanced YouTube Video Tags extension will help you to succeed!
확장 프로그램 기본 정보
이름 | Show YouTube Video Tags (Advanced) |
ID | jlimlbghmhifobdaampfgllomdldpmeg |
공식 URL | https://chromewebstore.google.com/detail/show-youtube-video-tags-a/jlimlbghmhifobdaampfgllomdldpmeg |
설명 | See all the Tags of a YouTube video. The extension also shows the total amount of tags and calculates the top 3 most used keywords. |
파일 크기 | 106 KB |
설치 횟수 | 35 |
현재 버전 | 0.0.0.2 |
최근 업데이트 | 2023-01-14 |
출시 날짜 | 2023-01-09 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | LenosTube |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://www.lenostube.com/en/ |
도움말 페이지 URL | https://www.lenostube.com/en/support/ |
개인정보 보호 정책 페이지 URL | https://www.lenostube.com/en/privacy-policy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Show YouTube Video Tags (Advanced)", "version": "0.0.0.2", "description": "See all the Tags of a YouTube video. The extension also shows the total amount of tags and calculates the top 3 most used keywords.", "manifest_version": 3, "permissions": [ "storage", "commands" ], "content_scripts": [ { "js": [ "lib\/jquery.js", "lib\/bootstrap.min.js", "inject.js" ], "css": [ "css\/bootstrap.min.css", "css\/custom.css" ], "run_at": "document_idle", "matches": [ "*:\/\/www.youtube.com\/*" ] } ], "background": { "service_worker": "background.js" }, "commands": { "toggle-extension": { "suggested_key": "Ctrl+X", "description": "Toggle extension" } }, "action": { "default_popup": "popup.html", "default_icon": { "16": "logo.png", "32": "logo.png", "48": "logo.png", "128": "logo.png" } }, "icons": { "16": "logo.png", "32": "logo.png", "48": "logo.png", "128": "logo.png" } } |