YouTube Tag Extractor

Displays all tags from YouTube video under the video header

Что такое YouTube Tag Extractor?

YouTube Tag Extractor - это расширение Chrome, разработанное https://craide.com, и его основная функция - "Displays all tags from YouTube video under the video header".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения YouTube Tag Extractor

Скачайте файлы расширений YouTube Tag Extractor в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        The YouTube Tag Extractor extension is a handy way of extracting and revealing meta tags associated with any public video. Extracting YouTube Tags can be very insightful to understand how competitor videos and other high-performing videos are using these tags to boost their performance.

YouTube tags are the hidden meta tags associated with videos on YouTube.                    

Основная информация о расширении

Название YouTube Tag Extractor YouTube Tag Extractor
ID aekopehcjaaehlmmlcgjnlfpplfhjkom
Официальный URL https://chromewebstore.google.com/detail/youtube-tag-extractor/aekopehcjaaehlmmlcgjnlfpplfhjkom
Описание Displays all tags from YouTube video under the video header
Размер файла 10.55 KB
Количество установок 4,000
Текущая Версия 1.0.2
Последнее Обновление 2022-11-23
Дата публикации 2022-02-18
Рейтинг 5.00/5 Всего 5 оценок
Разработчик https://craide.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://craide.com
URL страницы помощи https://craide.userecho.com
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Tag Extractor",
    "action": [],
    "manifest_version": 3,
    "version": "1.0.2",
    "description": "Displays all tags from YouTube video under the video header",
    "author": "STAMUL, LLC",
    "permissions": [],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "css": [
                "styles.css"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "inject.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ],
    "icons": {
        "16": "icons\/icon-16x16.png",
        "48": "icons\/icon-48x48.png",
        "128": "icons\/icon-128x128.png"
    }
}