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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This Chrome extension bundles SuperGIF class from libgif-js and brings basic play controls for animated gifs into your browser."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में SuperGIF एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    }
}