IG Downloader

Downloads videos and images from ig

IG Downloaderคืออะไร?

IG Downloader เป็นส่วนขยายของ Chrome ที่พัฒนาโดย matthewlam.js และคุณลักษณะหลักของมันคือ "Downloads videos and images from ig"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย IG Downloader

ดาวน์โหลดไฟล์ส่วนขยาย IG Downloader ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ IG Downloader IG Downloader
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"
        }
    ]
}