YouTube channel location

Show info about the YouTube channel location(country) in the video description.

YouTube channel location란 무엇입니까?

YouTube channel location은(는) arsxrs에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Show info about the YouTube channel location(country) in the video description."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

YouTube channel location 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        The extension adds a label with the region(location) information of the YouTube channel near the video description.                    

확장 프로그램 기본 정보

이름 YouTube channel location YouTube channel location
ID lagfgccfpnemkkekoonccjidinipogpd
공식 URL https://chrome.google.com/webstore/detail/lagfgccfpnemkkekoonccjidinipogpd
설명 Show info about the YouTube channel location(country) in the video description.
파일 크기 132 KB
설치 횟수 763
현재 버전 1.4.1
최근 업데이트 2023-08-30
출시 날짜 2022-04-29
평점 4.56/5 총 9 개의 평점
개발자 arsxrs
이메일 [email protected]
결제 유형 free
지원되는 언어 en,ru,uk
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.4.1",
    "manifest_version": 3,
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "action": [],
    "content_scripts": [
        {
            "run_at": "document_start",
            "js": [
                "content-script.js"
            ],
            "css": [
                "content-script.css"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        "https:\/\/www.youtube.com\/*"
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    }
}