Easy Saver for Instagram

Extension for saving media from Instagram's web version

Cos'è Easy Saver for Instagram?

Easy Saver for Instagram è un'estensione di Chrome sviluppata da vadimb88, e la sua funzione principale è "Extension for saving media from Instagram's web version".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Easy Saver for Instagram

Scarica i file di estensione Easy Saver for Instagram in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Easy Saver for Instagram Easy Saver for Instagram
ID mkaclpipmcbnleaiaicbcnoojineiloi
URL Ufficiale https://chromewebstore.google.com/detail/easy-saver-for-instagram/mkaclpipmcbnleaiaicbcnoojineiloi
Descrizione Extension for saving media from Instagram's web version
Dimensione del File 111 KB
Conteggio Installazioni 807
Versione Corrente 1.3.18
Ultimo Aggiornamento 2023-12-12
Data di Pubblicazione 2022-06-28
Valutazione 4.09/5 Totale 23 Valutazioni
Sviluppatore vadimb88
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    }
}