Easy Saver for Instagram

Extension for saving media from Instagram's web version

What is Easy Saver for Instagram?

Easy Saver for Instagram is a Chrome extension developed by vadimb88, and its main feature is "Extension for saving media from Instagram's web version".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Easy Saver for Instagram Extension CRX File

Download Easy Saver for Instagram extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Easy Saver for Instagram Easy Saver for Instagram
ID mkaclpipmcbnleaiaicbcnoojineiloi
Official URL https://chromewebstore.google.com/detail/easy-saver-for-instagram/mkaclpipmcbnleaiaicbcnoojineiloi
Description Extension for saving media from Instagram's web version
File Size 111 KB
Installation Count 807
Current Version 1.3.18
Last Updated 2023-12-12
Publish Date 2022-06-28
Rating 4.09/5 Total 23 Ratings
Developer vadimb88
Email [email protected]
Payment Type free
Supported Languages 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"
    }
}