Official GSAP Sniffer

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

What is Official GSAP Sniffer?

Official GSAP Sniffer is a Chrome extension developed by GreenSock, and its main feature is "Shows the version of GSAP (GreenSock Animation Platform) that is used on the page (if at all)".

Extension Screenshots

screenshot

Download Official GSAP Sniffer Extension CRX File

Download Official GSAP Sniffer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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/                    

Extension Basic Information

Name Official GSAP Sniffer Official GSAP Sniffer
ID dbcjaehchnikgdjjcehagpcikmlpjefh
Official URL https://chromewebstore.google.com/detail/official-gsap-sniffer/dbcjaehchnikgdjjcehagpcikmlpjefh
Description Shows the version of GSAP (GreenSock Animation Platform) that is used on the page (if at all)
File Size 71.47 KB
Installation Count 518
Current Version 1.3
Last Updated 2021-07-09
Publish Date 2019-12-30
Rating 5.00/5 Total 2 Ratings
Developer GreenSock
Email [email protected]
Payment Type free
Extension Website https://greensock.com/
Help Page URL https://greensock.com/forums/
Supported Languages 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"
    ]
}