Imgur to Gfycat
Replaces animated gifs throughout the internet with gfycat optimized HTML5 videos.
Imgur to Gfycat란 무엇입니까?
Imgur to Gfycat은(는) STRML에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Replaces animated gifs throughout the internet with gfycat optimized HTML5 videos."입니다.
확장 프로그램 스크린샷
Imgur to Gfycat 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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.
확장 프로그램 기본 정보
이름 | Imgur to Gfycat |
ID | idnninnhcleaikepmmomfnknbldalnjj |
공식 URL | https://chromewebstore.google.com/detail/imgur-to-gfycat/idnninnhcleaikepmmomfnknbldalnjj |
설명 | Replaces animated gifs throughout the internet with gfycat optimized HTML5 videos. |
파일 크기 | 37.47 KB |
설치 횟수 | 4,942 |
현재 버전 | 1.4.8 |
최근 업데이트 | 2015-04-16 |
출시 날짜 | 2015-04-15 |
평점 | 3.99/5 총 106 개의 평점 |
개발자 | STRML |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/STRML/Imgur-to-Gfycat |
도움말 페이지 URL | https://github.com/STRML/Imgur-to-Gfycat/issues |
지원되는 언어 | 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" } ] } |