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 |
官方網址 | 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" } } |