IG Downloader
Downloads videos and images from ig
IG Downloader là gì?
IG Downloader là một tiện ích mở rộng Chrome được phát triển bởi matthewlam.js, và tính năng chính của nó là "Downloads videos and images from ig".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng IG Downloader
Tải xuống các tệp mở rộng IG Downloader dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | gelbcoobaindiodaajafdoibjohgnnda |
URL Chính Thức | https://chrome.google.com/webstore/detail/ig-downloader/gelbcoobaindiodaajafdoibjohgnnda |
Mô tả | Downloads videos and images from ig |
Kích Thước Tệp | 10.96 KB |
Số Lần Cài Đặt | 2,000 |
Phiên Bản Hiện Tại | 1.1.3 |
Cập Nhật Lần Cuối | 2019-07-20 |
Ngày Phát Hành | 2019-07-20 |
Đánh Giá | 3.00/5 Tổng số 6 Đánh Giá |
Nhà Phát Triển | matthewlam.js |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://www.github.com/matthewlamdotjs |
Ngôn Ngữ Được Hỗ Trợ | 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" } ] } |