Youtube Tags

Find tags of youtube video tags

Youtube Tags란 무엇입니까?

Youtube Tags은(는) https://www.thebyteseffect.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Find tags of youtube video tags"입니다.

확장 프로그램 스크린샷

screenshot

Youtube Tags 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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
}