Official GSAP Sniffer

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

¿Qué es Official GSAP Sniffer?

Official GSAP Sniffer es una extensión de Chrome desarrollada por GreenSock, y su función principal es "Shows the version of GSAP (GreenSock Animation Platform) that is used on the page (if at all)".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Official GSAP Sniffer

Descarga archivos de extensión Official GSAP Sniffer en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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/                    

Información Básica de la Extensión

Nombre Official GSAP Sniffer Official GSAP Sniffer
ID dbcjaehchnikgdjjcehagpcikmlpjefh
URL Oficial https://chromewebstore.google.com/detail/official-gsap-sniffer/dbcjaehchnikgdjjcehagpcikmlpjefh
Descripción Shows the version of GSAP (GreenSock Animation Platform) that is used on the page (if at all)
Tamaño del Archivo 71.47 KB
Cantidad de Instalaciones 518
Versión Actual 1.3
Última Actualización 2021-07-09
Fecha de Publicación 2019-12-30
Calificación 5.00/5 Total de 2 Calificaciones
Desarrollador GreenSock
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://greensock.com/
URL de la Página de Ayuda https://greensock.com/forums/
Idiomas Soportados 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"
    ]
}