Instant Save for Instagram and Flickr

This extension allows saving of any Instagram or Flickr image via a single click on the context menu.

什么是Instant Save for Instagram and Flickr?

Instant Save for Instagram and Flickr是由dangardiner开发的Chrome扩展程序,该扩展的主要功能是“This extension allows saving of any Instagram or Flickr image via a single click on the context menu.”。

扩展截图

screenshot

下载Instant Save for Instagram and Flickr扩展crx文件

下载Instant Save for Instagram and Flickr扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        KNOWN ISSUE: There was a recent change on IG that caused some video download functionality to break, and I haven't yet been able to find a workaround for it.  I apologize for the issue, and will update things once I'm able to find a workaround.


Note from the Developer:
If you find something is not working, please use the "Support" option to let me know before leaving a negative review.

As you can tell from the release notes below, the websites this extension works on change their structure in a way that breaks this extension's functionality periodically.  I have no affiliation with them, so don't know when those changes are going to happen until they get released to my account and I happen to run into the situation myself, then need to find free time to implement and release a change.  Letting me know that something is not working using the Support option helps expedite that process.


Summary:
This extension is the only way to immediately save any image from Instagram or Flickr with a single right-click context menu click!  

Images from the main feed, a post or photo's page, or a user's overview or favorites page will save directly to your browser's default download location when you click on the option this extension adds to the right-click context menu.


Release Notes:
1.0 added support for saving from the Timeline and Post Instagram pages
1.1 added support for saving from the user overview page
1.2 added support for higher quality, un-cropped images
1.3 fixed the plugin for Instagram's updated page layout model
1.4-5 updated name and logos in response to trademark complaint from Instagram
1.6 fixed handling for new types of videos
1.7 IG changed their app, and I can no longer modify the URL to get the un-cropped version, so this update gets the version currently loaded on your screen (if you click on a picture from a timeline to see it large, it'll grab the full version).  I'm looking into a solution, but none are obvious.
1.8 Chrome v65 changed the behavior of  downloads in a way that broke this (opening images in a new tab rather than downloading them) - the download logic has been modified so that things work properly again.  As an added bonus, the source user's name is now prefixed onto the file name.
1.9 changed the download logic because of another Chrome update that broke the previous download type
2.0 added the ability to download from Flickr
2.1 fixed an odd bug
2.2 updated the IG save logic for videos due to updated website structure
2.3 fixed a bug downloading videos with no comments
2.4 fixed a user-reported issue where file extensions had characters appended to them
2.5 added a "Labs" menu item off the main icon with in-development features
  - SaveStorm: When checked, any single click on IG or Flickr is interpreted as a download request. Works properly, but needs to be only enabled for short periods.
  - DL All Flickr: saves all open Flickr single-image tabs at one go. Still buggy when pulling large numbers down.
2.6 makes the Ctrl+Click (open in new tab) block that IG put in place work properly again
2.7 fixed an issue where videos downloaded from IG would have characters after the file extension
2.8 fixed an issue where clicking within a tag on the image would prevent the download from working
2.9 added the ability to download full-resolution photos or videos from Instagram Stories by left-clicking on the application icon in the top bar during playback
2.10 fixed video downloads
2.11 Added the ability to download IG TV posts
2.12 Updated the logic used to retrieve the username for the file prefix based on updates to IG's page structure
2.13 Updated the username retrieval logic when the page structure changed again
2.14 Updated IG Story photo retrieval logic based up an updated page structure
2.15 Included substantial updates around logic used with IG to retrieve video URLs, made necessary by some functionalities I was using being deprecated
2.16 Updated IG story retrieval logic to retrieve the highest-res image, and fixed saving videos from multi-image posts and from a user profile page based on structure changes
2.17 Updated image URL retrieval logic to pull from sourceset if available, fixed video URL retrieval from profile page, fixed video URL retrieval from main feed when after the initial set of posts. 
2.18 Turned off debug log that I accidentally left enabled and caused extra noise in the console.
2.19 Updated the username retrieval logic when the page structure changed again
2.20 Fully fixed the issue of some images from Newsfeed downloading thumbnails rather than full-res.  Partially fixed downloading videos from Newsfeed - it now works for the first batch of items on newsfeed, but there's a known issue for downloading videos beyond the infinite scroll and from a User page in a multi-image post - which you can work around by going to the Post page. 
2.21 Fixed IG video downloads that were broken due to a new data structure, and migrated to Chrome Extension Manifest v3
2.22 Small update to name generation logic for images that internally use webp filetypes, which was causing invalid filenames
2.23 Small update to name generation logic issue causing long filenames including an HEIC filetype; these are now treated as jpg files.
2.24 Update support for PNG files                    

扩展基本信息

名称 Instant Save for Instagram and Flickr Instant Save for Instagram and Flickr
ID majobfiinhihjjndfdncncgdfgdncnek
官方URL https://chromewebstore.google.com/detail/instant-save-for-instagra/majobfiinhihjjndfdncncgdfgdncnek
简介 This extension allows saving of any Instagram or Flickr image via a single click on the context menu.
文件大小 19.59 KB
安装次数 10,000
当前版本 2.24
更新时间 2023-06-18
上架时间 2020-05-26
评分 3.83/5 共90次评分
开发者 dangardiner
电子邮箱 [email protected]
付费类型 free
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Instant Save for Instagram and Flickr",
    "short_name": "Instant Save",
    "version": "2.24",
    "description": "This extension allows saving of any Instagram or Flickr image via a single click on the context menu.",
    "offline_enabled": false,
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.instagram.com\/*",
                "https:\/\/www.flickr.com\/*"
            ],
            "js": [
                "app.js"
            ]
        }
    ],
    "permissions": [
        "contextMenus"
    ],
    "action": {
        "128": "logo-128.png"
    },
    "icons": {
        "16": "camera-16px.png",
        "128": "logo-128.png"
    }
}