Social Media Content Downloader

An extension which lets you download images and videos including stories, highligts and reels from instagram

Social Media Content Downloader란 무엇입니까?

Social Media Content Downloader은(는) Meet Panchal에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension which lets you download images and videos including stories, highligts and reels from instagram"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Social Media Content Downloader 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This extension aims to provide a handy tool to download image and video content from Instagram. The target audience for this extension can be Designers, Blogger, Vlogger, Photographers basically all the creative profession in addition to Marketing people as now a days most of the marketing campaign are influenced by social media (memes to be specific)

This extension supports Instagram feed, stories, highlights, reel, explore, IGTV. One can save the content (like stories which is available for 24hr) also while downloading the content it captures meta data of that content.

It also shows the 'Total saved posts' along with the category wise count of saved posts with real time updation of the count and cover photo of the category

With so much to explore, there can be endless use-cases for which the end user can download this extension                    

확장 프로그램 기본 정보

이름 Social Media Content Downloader Social Media Content Downloader
ID iepkgmaifomdjkclioanijhicpgojada
공식 URL https://chrome.google.com/webstore/detail/social-media-content-down/iepkgmaifomdjkclioanijhicpgojada
설명 An extension which lets you download images and videos including stories, highligts and reels from instagram
파일 크기 166 KB
설치 횟수 319
현재 버전 2.0.0
최근 업데이트 2021-08-09
출시 날짜 2021-08-09
개발자 Meet Panchal
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Social Media Content Downloader",
    "version": "2.0.0",
    "description": "An extension which lets you download images and videos including stories, highligts and reels from instagram",
    "permissions": [
        "webRequest",
        "tabs",
        "downloads",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "cookies",
        "webRequestBlocking"
    ],
    "browser_action": {
        "default_icon": {
            "16": "images\/icon16.png",
            "32": "images\/icon32.png",
            "64": "images\/icon64.png",
            "128": "images\/icon128.png"
        },
        "default_title": "Social Media Content Downloader"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.instagram.com\/*"
            ],
            "css": [
                "css\/content.css"
            ],
            "js": [
                "lib\/jquery.js",
                "content-scripts\/content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "64": "images\/icon64.png",
        "128": "images\/icon128.png"
    },
    "web_accessible_resources": [
        "images\/*.png",
        "images\/*.gif"
    ],
    "manifest_version": 2
}