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ファイルをダウンロード

SuperGIF拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
    }
}