Official GSAP Sniffer

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

Co je Official GSAP Sniffer?

Official GSAP Sniffer je rozšíření Chrome vyvinuté GreenSock, a jeho hlavní funkcí je „Shows the version of GSAP (GreenSock Animation Platform) that is used on the page (if at all)“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Official GSAP Sniffer

Stáhněte si soubory rozšíření Official GSAP Sniffer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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/                    

Základní Informace o Rozšíření

Název Official GSAP Sniffer Official GSAP Sniffer
ID dbcjaehchnikgdjjcehagpcikmlpjefh
Oficiální URL https://chromewebstore.google.com/detail/official-gsap-sniffer/dbcjaehchnikgdjjcehagpcikmlpjefh
Popis Shows the version of GSAP (GreenSock Animation Platform) that is used on the page (if at all)
Velikost souboru 71.47 KB
Počet instalací 518
Aktuální Verze 1.3
Poslední Aktualizace 2021-07-09
Datum Vydání 2019-12-30
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář GreenSock
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://greensock.com/
URL Stránky Nápovědy https://greensock.com/forums/
Podporované Jazyky 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"
    ]
}