Cutback TimeSlider

Cutback TimeSlider is a tool used to display a controls for the Greensock timeline (GSAP)

什麼是Cutback TimeSlider?

Cutback TimeSlider是由Juan Lara開發的Chrome擴展程式,該擴展的主要功能是“Cutback TimeSlider is a tool used to display a controls for the Greensock timeline (GSAP)”。

擴展截圖

screenshot

下載Cutback TimeSlider擴展crx文件

下載Cutback TimeSlider擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        ----------
ENGLISH
----------

Cutback TimeSlider is a Chrome extension used to debug the animation of a HTML5 Greensock banner

----------------------------------------------------------------------------------------------------------

Banner's requirements

1- Banner needs to be made with TweenMax (GSAP).
2- Banner need to be made in one Timeline.

It works with just run a banner with this requirements and click on the extension to activate.

----------
ESPAÑOL
----------

Cutback TimeSlider es una extension de Chrome para controlar el timeline de banners hechos con Greensock (GSAP)

----------------------------------------------------------------------------------------------------------

Requerimientos del banner

1- El banner tiene que ser hecho con TweenMax (GSAP).
2- El banner debe de estar hecho con un solo Timeline.

Funciona fácilmente con seguir los requerimientos y hacer click en la extension para activarla.                    

擴展基本資訊

名稱 Cutback TimeSlider Cutback TimeSlider
ID ddgibjcmokiciolhfhgcmcgnjhfonakg
官方網址 https://chrome.google.com/webstore/detail/cutback-timeslider/ddgibjcmokiciolhfhgcmcgnjhfonakg
簡介 Cutback TimeSlider is a tool used to display a controls for the Greensock timeline (GSAP)
檔案大小 79.73 KB
安裝次數 92
目前版本 3.0.4
更新時間 2019-08-28
上架時間 2019-08-28
評分 5.00/5 共 3 次評分
開發者 Juan Lara
電子郵箱 [email protected]
付費類型 free
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Cutback TimeSlider",
    "description": "Cutback TimeSlider is a tool used to display a controls for the Greensock timeline (GSAP)",
    "version": "3.0.4",
    "permissions": [
        "activeTab",
        "tabs",
        "sessions",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "file:\/\/\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.js",
                "content.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Cutback TimeSlider"
    },
    "icons": {
        "16": "icon\/icon16.png",
        "18": "icon\/icon18.png",
        "24": "icon\/icon24.png",
        "32": "icon\/icon32.png",
        "36": "icon\/icon36.png",
        "48": "icon\/icon48.png",
        "128": "icon\/icon128.png"
    },
    "manifest_version": 2
}