YouTube Features — Analytics and Tools

Shows useful information about the video and channel

Was ist YouTube Features — Analytics and Tools?

YouTube Features — Analytics and Tools ist eine Chrome-Erweiterung, die von Ali Gasymov entwickelt wurde, und ihr Hauptmerkmal ist "Shows useful information about the video and channel".

Erweiterungsscreenshots

screenshot

YouTube Features — Analytics and Tools-Erweiterungs-CRX-Datei herunterladen

Laden Sie YouTube Features — Analytics and Tools-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name YouTube Features — Analytics and Tools YouTube Features — Analytics and Tools
ID jkiedgmdpandlnbobnjcbhfklnpdaflc
Offizielle URL https://chromewebstore.google.com/detail/youtube-features-%E2%80%94-analyt/jkiedgmdpandlnbobnjcbhfklnpdaflc
Beschreibung Shows useful information about the video and channel
Dateigröße 98.2 KB
Installationsanzahl 2,222
Aktuelle Version 3.3.2
Letztes Update 2023-10-12
Veröffentlichungsdatum 2021-02-23
Bewertung 5.00/5 Insgesamt 5 Bewertungen
Entwickler Ali Gasymov
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://www.gasymov.com/privacy-policy/youtube-tags
Unterstützte Sprachen 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"
    ]
}