Official GSAP Sniffer

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

Co to jest Official GSAP Sniffer?

Official GSAP Sniffer to rozszerzenie Chrome opracowane przez GreenSock, a jego główną funkcją jest „Shows the version of GSAP (GreenSock Animation Platform) that is used on the page (if at all)”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Official GSAP Sniffer

Pobierz pliki rozszerzeń Official GSAP Sniffer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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/                    

Podstawowe informacje o rozszerzeniu

Nazwa Official GSAP Sniffer Official GSAP Sniffer
ID dbcjaehchnikgdjjcehagpcikmlpjefh
Oficjalny URL https://chromewebstore.google.com/detail/official-gsap-sniffer/dbcjaehchnikgdjjcehagpcikmlpjefh
Opis Shows the version of GSAP (GreenSock Animation Platform) that is used on the page (if at all)
Rozmiar pliku 71.47 KB
Liczba instalacji 518
Aktualna Wersja 1.3
Ostatnia Aktualizacja 2021-07-09
Data Publikacji 2019-12-30
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper GreenSock
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://greensock.com/
Adres URL Strony Pomocy https://greensock.com/forums/
Obsługiwane Języki 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"
    ]
}