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文件

下載YouTube Features — Analytics and Tools擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    ]
}