Imgur to Gfycat
Replaces animated gifs throughout the internet with gfycat optimized HTML5 videos.
Wat is Imgur to Gfycat?
Imgur to Gfycat is een Chrome-extensie ontwikkeld door STRML, en de belangrijkste functie is "Replaces animated gifs throughout the internet with gfycat optimized HTML5 videos.".
Extensie Screenshots
Download het CRX-bestand van de extensie Imgur to Gfycat
Download Imgur to Gfycat-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Works with Reddit Enhancement Suite! Chrome extension that replaces gifs hosted by imgur to HTML5-optimized video converted and hosted by gfycat. Gfycat is a gif optimization service that compresses gifs into HTML5 videos, where they can enjoy lower file size, GPU acceleration (great on mobile!) and pause/play/seek. This extension will modify anchor links to gfycat.com/fetch links, which transcode & show the gif after transcoding. `img` tags with a gif hosted on imgur will trigger a `transcodeRelease` action, which will cause the gif to be transcoded on gfycat's servers if it hasn't already. To improve the user experience, gifs are only replaced with gfycat videos if they are already transcoded on gfycat's servers. Otherwise, the original gif is shown. As soon as one user - anywhere - views that gif on gfycat, all users will see the transcoded version when using this extension. CHANGELOG ======== v1.4.7 ------ * Fix a MutationObserver spec change leading to an error on new browsers. v1.4.6 ------ * Prevent extremely small erroneous autoresizing caused an interaction with RES. v1.4.5 ------ * Fixed a bug where a GIF displayed smaller than its original size via CSS would cause the converted gfy to have a size ceiling. v1.4.4 ------ * Gfys will now be the correct size when replacing a GIF that has been manipulated via CSS to be smaller than its original size. v1.4.3 ------ * Gfycat videos can now be reverted back to GIFs via the right-click menu. v1.4.2 ------ * Fixed broken google pagespeed lazy loading. v1.4.1 ------ * Doubleclicking gfycat controls will no longer cause the zoom level to change. * Fixed a control display issue in comment threads caused by an RES change. v1.4.0 ------ * Fixed a bug where the original gif would annoyingly show up before the gfy loaded. * Made gfycat controls much more usable and eliminated padding animation on hover. * Fixed a bug where you would resize the gfy on right/middle click. * Improved album performance and started caching gfy urls. v1.3.3 ------ * Further fixes to RES galleries. They should work well front to back, now. * Tweaks to make gfy drag resizing a lot less annoying. v1.3.2 ------ * Fixed a bug where gifs would stop animating if they were not loadable from Gfycat. * Now displaying an error when a manual conversion fails (error from Gfycat API). v1.3.1 ------ * Added support for minus.com, photobucket.com, and lots more. See the complete list at https://github.com/STRML/Imgur-to-Gfycat/blob/e39509b64358514c554e1c49f22c9ce75c02d782/Source/imgur-to-gfycat.js#L12 * Fixed RES album support. v1.3.0 ------ * Added context menu support for converting files that may have been missed, such as non-imgur gifs or gifs with incorrect extensions (such as the many gifs with the .jpg extension on /r/gifs) v1.2.0 ------ * Gfycat gifs/videos can now be dragged to resize, much like images in RES. Doubleclick to restore the original size. v1.1.3 ------ * Fix clicks on gfycat controls opening a new tab when the gfy is surrounded by an anchor (RES, etc). * Prevented execution of gfyembed.js unless a gif needs conversion. Should fix some previous weird issues with other sites, e.g. YouTube. v1.1.2 ------ * Fix gfycat.com/fetch urls breaking when this extension is active. v1.1.1 ------ * Convert all eligibble anchor links to point to gfycat if a gfycat url has successfully been resolved. * Fix gfycat controls overflowing in RES. v1.1.0 ------ * Fix some issues with incorrect navigation when using RES. * Prevent loading of original gifs to save bandwidth if they are going to be replaced anyway. v1.0.0 ------ * Initial release.
Basisinformatie over de Extensie
Naam | Imgur to Gfycat |
ID | idnninnhcleaikepmmomfnknbldalnjj |
Officiële URL | https://chromewebstore.google.com/detail/imgur-to-gfycat/idnninnhcleaikepmmomfnknbldalnjj |
Beschrijving | Replaces animated gifs throughout the internet with gfycat optimized HTML5 videos. |
Bestandsgrootte | 37.47 KB |
Aantal Installaties | 4,942 |
Huidige Versie | 1.4.8 |
Laatst Bijgewerkt | 2015-04-16 |
Publicatiedatum | 2015-04-15 |
Beoordeling | 3.99/5 Totaal 106 Beoordelingen |
Ontwikkelaar | STRML |
Betalingswijze | free |
Extensiewebsite | https://github.com/STRML/Imgur-to-Gfycat |
Help Pagina-URL | https://github.com/STRML/Imgur-to-Gfycat/issues |
Ondersteunde Talen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Imgur to Gfycat", "short_name": "Imgur to Gfy", "version": "1.4.8", "description": "Replaces animated gifs throughout the internet with gfycat optimized HTML5 videos.", "icons": { "16": "icon-bitty.png", "48": "icon-small.png", "128": "icon-large.png" }, "web_accessible_resources": [ "gfyembed.js" ], "permissions": [ "contextMenus" ], "background": { "scripts": [ "shared.js", "bg.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "http:\/\/*\/*" ], "js": [ "superagent.js", "shared.js", "imgur-to-gfycat.js", "drag-to-resize.js" ], "css": [ "gfytweaks.css" ], "run_at": "document_end" } ] } |