Official GSAP Sniffer

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

Cos'è Official GSAP Sniffer?

Official GSAP Sniffer è un'estensione di Chrome sviluppata da GreenSock, e la sua funzione principale è "Shows the version of GSAP (GreenSock Animation Platform) that is used on the page (if at all)".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Official GSAP Sniffer

Scarica i file di estensione Official GSAP Sniffer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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/                    

Informazioni di Base sull'Estensione

Nome Official GSAP Sniffer Official GSAP Sniffer
ID dbcjaehchnikgdjjcehagpcikmlpjefh
URL Ufficiale https://chromewebstore.google.com/detail/official-gsap-sniffer/dbcjaehchnikgdjjcehagpcikmlpjefh
Descrizione Shows the version of GSAP (GreenSock Animation Platform) that is used on the page (if at all)
Dimensione del File 71.47 KB
Conteggio Installazioni 518
Versione Corrente 1.3
Ultimo Aggiornamento 2021-07-09
Data di Pubblicazione 2019-12-30
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore GreenSock
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://greensock.com/
URL della Pagina di Aiuto https://greensock.com/forums/
Lingue Supportate 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"
    ]
}