SuperGIF

This Chrome extension bundles SuperGIF class from libgif-js and brings basic play controls for animated gifs into your browser.

SuperGIF란 무엇입니까?

SuperGIF은(는) Tobias Smolka에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This Chrome extension bundles SuperGIF class from libgif-js and brings basic play controls for animated gifs into your browser."입니다.

확장 프로그램 스크린샷

screenshot

SuperGIF 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Main purpose of this extension is to improve user experience when watching long animated gifs in a browser. Typical user is someone who watches screen capture converted into animated gif and wishes to pause the animation to focus on some detail on currently captured screen. This rather trivial task is not really straightforward as there are no pause/resume controls built-in. 

This extension adds "SuperGIF" context menu to GIF images on the currently visited site. When triggered, image is parsed into individual frames and replaced with canvas that plays the animation frame by frame. User can then pause/resume or seek by clicking on the canvas. 

For a simple example, install the extension and test it on this animated gif: https://github.com/buzzfeed/libgif-js/blob/master/example_gifs/rub_test.gif . 

Under the hood this extension bundles SuperGIF class from libgif-js project and adds little bit of custom logic to registered event handlers.                    

확장 프로그램 기본 정보

이름 SuperGIF SuperGIF
ID mjdfacapckkijfkjopiadlgnooegojne
공식 URL https://chromewebstore.google.com/detail/supergif/mjdfacapckkijfkjopiadlgnooegojne
설명 This Chrome extension bundles SuperGIF class from libgif-js and brings basic play controls for animated gifs into your browser.
파일 크기 294 KB
설치 횟수 66
현재 버전 0.0.2
최근 업데이트 2021-07-25
출시 날짜 2021-07-25
평점 5.00/5 총 2 개의 평점
개발자 Tobias Smolka
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/tsmolka/supergif-chrome-extension
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SuperGIF",
    "description": "This Chrome extension bundles SuperGIF class from libgif-js and brings basic play controls for animated gifs into your browser.",
    "homepage_url": "https:\/\/github.com\/tsmolka\/supergif-chrome-extension",
    "version": "0.0.2",
    "manifest_version": 3,
    "minimum_chrome_version": "88.0",
    "background": {
        "service_worker": "service_worker.js"
    },
    "permissions": [
        "activeTab",
        "contextMenus",
        "scripting"
    ],
    "icons": {
        "16": "\/images\/icon-16.png",
        "48": "\/images\/icon-48.png",
        "128": "\/images\/icon-128.png"
    }
}