Official GSAP Sniffer

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

Apa itu Official GSAP Sniffer?

Official GSAP Sniffer adalah ekstensi Chrome yang dikembangkan oleh GreenSock, dan fitur utamanya adalah "Shows the version of GSAP (GreenSock Animation Platform) that is used on the page (if at all)".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Official GSAP Sniffer

Unduh file ekstensi Official GSAP Sniffer dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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/                    

Informasi Dasar Ekstensi

Nama Official GSAP Sniffer Official GSAP Sniffer
ID dbcjaehchnikgdjjcehagpcikmlpjefh
URL Resmi https://chromewebstore.google.com/detail/official-gsap-sniffer/dbcjaehchnikgdjjcehagpcikmlpjefh
Deskripsi Shows the version of GSAP (GreenSock Animation Platform) that is used on the page (if at all)
Ukuran File 71.47 KB
Jumlah Instalasi 518
Versi Saat Ini 1.3
Terakhir Diperbarui 2021-07-09
Tanggal Publikasi 2019-12-30
Penilaian 5.00/5 Total 2 Penilaian
Pengembang GreenSock
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://greensock.com/
URL Halaman Bantuan https://greensock.com/forums/
Bahasa yang Didukung 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"
    ]
}