YouTube Features — Analytics and Tools

Shows useful information about the video and channel

YouTube Features — Analytics and Tools란 무엇입니까?

YouTube Features — Analytics and Tools은(는) Ali Gasymov에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Shows useful information about the video and channel"입니다.

확장 프로그램 스크린샷

screenshot

YouTube Features — Analytics and Tools 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        List of features:
- Download thumbnail in maximal resolution
- View and copy video tags
- View and copy channel tags
- Registration is not required                    

확장 프로그램 기본 정보

이름 YouTube Features — Analytics and Tools YouTube Features — Analytics and Tools
ID jkiedgmdpandlnbobnjcbhfklnpdaflc
공식 URL https://chromewebstore.google.com/detail/youtube-features-%E2%80%94-analyt/jkiedgmdpandlnbobnjcbhfklnpdaflc
설명 Shows useful information about the video and channel
파일 크기 98.2 KB
설치 횟수 2,222
현재 버전 3.3.2
최근 업데이트 2023-10-12
출시 날짜 2021-02-23
평점 5.00/5 총 5 개의 평점
개발자 Ali Gasymov
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://www.gasymov.com/privacy-policy/youtube-tags
지원되는 언어 en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extName__",
    "description": "__MSG_extDescription__",
    "author": "Ali Gasymov",
    "version": "3.3.2",
    "default_locale": "en",
    "icons": {
        "16": "images\/icon_16.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    },
    "browser_action": {
        "default_icon": "images\/icon_32.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "permissions": [
        "tabs",
        "storage",
        "downloads",
        "",
        "clipboardWrite"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/common.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "js\/youtube.js"
            ],
            "css": [
                "css\/youtube.css"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "css\/*.css"
    ]
}