Easy Saver for Instagram
Extension for saving media from Instagram's web version
什么是Easy Saver for Instagram?
Easy Saver for Instagram是由vadimb88开发的Chrome扩展程序,该扩展的主要功能是“Extension for saving media from Instagram's web version”。
扩展截图
下载Easy Saver for Instagram扩展crx文件
下载Easy Saver for Instagram扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Easy Saver will help you to easily download photos, videos and live streams from your or your friend's account. It adds download button on all media of web version of Instagram. Using this extension, you can download photos and videos from your feed, from your friend's profile, or from your own profile with one click. You can download reels, stories, and even whole carousel posts. Easy Saver creates "easy-saver-folder" in your Download folder. All videos and photos will be saved in subfolders like this: "%Downloads_folder%\easy-saver-folder\%friends_username%\", so it will be very easy to sort photos from different accounts. After the download is finished download button will blink green, if it was successful, or red if it wasn't. (usually because it's a private video or because you cancel the download yourself) New feature🔥🔥🔥: now you can record Instagrams live stream which is currently online. Open streams page, find record panel, click "Start recording" button. That's it. The stream will be recorded and saved automatically at the end. Or you can click "Stop and save" button and currently recorded part of a live stream will be saved right away. While the stream is being recorded you can minimize the recording panel and continue to browse the Instagram. Yes, you can leave live stream page and browse your feed, stream will be recorded anyway (But don't reload Instagram page with browser reload button, it would stop the recording. Basically, if you see a recording panel then the stream is being recorded) You can record 🔥several streams simultaneously🔥 in one tab. Just open the other stream you want to record and another record panel will be added. At the end of the stream you will receive two files: one with video .m4v, one with audio .m4a. Extension can't merge these files by itself, but you can use video player (VLC for example) to open video and add an audio track. Or you can use "ffmpeg" program to merge these files into one video file (I prefer this way) Or you can find some online service to merge it, it's up to you. Note, that if you want Chrome to automatically download photos, you need 'Ask where to save each file before downloading' option to be turned off, otherwise it will ask you where to save every single photo. It's not bad, but it's not as convenient as originally intended. And don't forget, that all videos and photos belong to their creators. Don't download it without the owner's permission.
扩展基本信息
名称 | Easy Saver for Instagram |
ID | mkaclpipmcbnleaiaicbcnoojineiloi |
官方URL | https://chromewebstore.google.com/detail/easy-saver-for-instagram/mkaclpipmcbnleaiaicbcnoojineiloi |
简介 | Extension for saving media from Instagram's web version |
文件大小 | 111 KB |
安装次数 | 807 |
当前版本 | 1.3.18 |
更新时间 | 2023-12-12 |
上架时间 | 2022-06-28 |
评分 | 4.09/5 共23次评分 |
开发者 | vadimb88 |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Easy Saver for Instagram", "description": "Extension for saving media from Instagram's web version", "version": "1.3.18", "manifest_version": 3, "action": { "default_icon": "icons\/logo_120.png" }, "icons": { "16": "icons\/logo_16.png", "48": "icons\/logo_48.png", "128": "icons\/logo_128.png" }, "permissions": [ "downloads", "webNavigation", "storage" ], "options_page": "html\/options.html", "content_scripts": [ { "matches": [ "*:\/\/*.instagram.com\/*" ], "js": [ "content.js" ] } ], "background": { "service_worker": "background.js" } } |