Official GSAP Sniffer

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

什么是Official GSAP Sniffer?

Official GSAP Sniffer是由GreenSock开发的Chrome扩展程序,该扩展的主要功能是“Shows the version of GSAP (GreenSock Animation Platform) that is used on the page (if at all)”。

扩展截图

screenshot

下载Official GSAP Sniffer扩展crx文件

下载Official GSAP Sniffer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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/                    

扩展基本信息

名称 Official GSAP Sniffer Official GSAP Sniffer
ID dbcjaehchnikgdjjcehagpcikmlpjefh
官方URL https://chromewebstore.google.com/detail/official-gsap-sniffer/dbcjaehchnikgdjjcehagpcikmlpjefh
简介 Shows the version of GSAP (GreenSock Animation Platform) that is used on the page (if at all)
文件大小 71.47 KB
安装次数 518
当前版本 1.3
更新时间 2021-07-09
上架时间 2019-12-30
评分 5.00/5 共2次评分
开发者 GreenSock
电子邮箱 [email protected]
付费类型 free
扩展官网 https://greensock.com/
帮助页面URL https://greensock.com/forums/
支持的语言 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"
    ]
}