SuperGIF
This Chrome extension bundles SuperGIF class from libgif-js and brings basic play controls for animated gifs into your browser.
Τι είναι το SuperGIF;
Το SuperGIF είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Tobias Smolka, και η κύρια λειτουργία του είναι "This Chrome extension bundles SuperGIF class from libgif-js and brings basic play controls for animated gifs into your browser.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης SuperGIF
Λήψη αρχείων επέκτασης 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 |
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" } } |