Official GSAP Sniffer

Shows the version of GSAP (GreenSock Animation Platform) that is used on the page (if at all)

Что такое Official GSAP Sniffer?

Official GSAP Sniffer - это расширение Chrome, разработанное GreenSock, и его основная функция - "Shows the version of GSAP (GreenSock Animation Platform) that is used on the page (if at all)".

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

screenshot

Скачать файл CRX расширения Official GSAP Sniffer

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

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

                        This is the official GSAP sniffer extension that detects if the GreenSock Animation Platform (GSAP) is used on a given webpage. If so, the icon becomes green and shows the version of GSAP. If GSAP is not used, the icon stays grey.

https://greensock.com/                    

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

Название Official GSAP Sniffer Official GSAP Sniffer
ID dbcjaehchnikgdjjcehagpcikmlpjefh
Официальный URL https://chromewebstore.google.com/detail/official-gsap-sniffer/dbcjaehchnikgdjjcehagpcikmlpjefh
Описание Shows the version of GSAP (GreenSock Animation Platform) that is used on the page (if at all)
Размер файла 71.47 KB
Количество установок 518
Текущая Версия 1.3
Последнее Обновление 2021-07-09
Дата публикации 2019-12-30
Рейтинг 5.00/5 Всего 2 оценок
Разработчик GreenSock
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://greensock.com/
URL страницы помощи https://greensock.com/forums/
Поддерживаемые языки en
manifest.json
{
    "author": "GreenSock",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icons\/sock-bw-32.png",
        "default_title": "Official GSAP Sniffer"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "description": "Shows the version of GSAP (GreenSock Animation Platform) that is used on the page (if at all)",
    "icons": {
        "128": "icons\/gsap-color-128.png",
        "16": "icons\/sock-color-16.png",
        "32": "icons\/sock-color-32.png",
        "48": "icons\/gsap-color-48.png"
    },
    "manifest_version": 2,
    "name": "Official GSAP Sniffer",
    "permissions": [
        "activeTab"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.3",
    "web_accessible_resources": [
        "checker.js"
    ]
}