IG Downloader
Downloads videos and images from ig
IG Downloader란 무엇입니까?
IG Downloader은(는) matthewlam.js에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Downloads videos and images from ig"입니다.
확장 프로그램 스크린샷
IG Downloader 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
After installing the extension, navigate to IG's website in a new tab and log in. From there you have the following options: Download regular IG posts images/videos: -click on a link to a post anywhere IG to open it. -a confirm dialog should pop up asking if you want to download the files. Download IG stories: -click on a story to open it in the story viewer. -click start download button on top left of page and stories should start downloading as they are played. -click stop download button on top left of page to stop downloading.
확장 프로그램 기본 정보
이름 | |
ID | gelbcoobaindiodaajafdoibjohgnnda |
공식 URL | https://chrome.google.com/webstore/detail/ig-downloader/gelbcoobaindiodaajafdoibjohgnnda |
설명 | Downloads videos and images from ig |
파일 크기 | 10.96 KB |
설치 횟수 | 2,000 |
현재 버전 | 1.1.3 |
최근 업데이트 | 2019-07-20 |
출시 날짜 | 2019-07-20 |
평점 | 3.00/5 총 6 개의 평점 |
개발자 | matthewlam.js |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://www.github.com/matthewlamdotjs |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "IG Downloader", "description": "Downloads videos and images from ig", "version": "1.1.3", "author": "Matthew Lam", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "permissions": [ "activeTab" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/*.instagram.com\/*" ], "js": [ "posts.js" ], "run_at": "document_end" }, { "matches": [ "https:\/\/*.instagram.com\/*" ], "js": [ "stories.js" ], "run_at": "document_end" } ] } |