Instagram video downloader

Adds a download link for instagram videos in the one-image pages

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey, Greasemonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

You will need to install an extension such as Tampermonkey to install this script.

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

Advertisement:

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

Advertisement:

// ==UserScript==
// @name         Instagram video downloader
// @namespace    http://lbreda.com/
// @version      1.3
// @description  Adds a download link for instagram videos in the one-image pages
// @author       Lorenzo Breda
// @match        https://*.instagram.com/p/*
// @grant        GM.xmlHttpRequest
// ==/UserScript==

(function() {
    'use strict';

    GM.xmlHttpRequest({
        method: 'GET',
        url: window.location.href,
        onload: function(response) {
            var parser = new DOMParser();
            var resDocument = parser.parseFromString(response.responseText, 'text/html');
            if(resDocument.querySelector('meta[property="og:video"]') && resDocument.querySelector('meta[property="og:video"]').content){
                var a = document.createElement('a');
                var container = document.querySelector('.ltpMr.Slqrh');
                a.href = resDocument.querySelector('meta[property="og:video"]').content;
                a.style.width = '24px';
                a.style.height = '24px';
                a.style.margin = '8px';
                a.style.backgroundImage = "url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAMAAADXqc3KAAAAV1BMVEUAAAAsPlAsPlAsPlAsPlAsPlAsPlAsPlAsPlAsPlAsPlAsPlAsPlAsPlAsPlAsPlAsPlAsPlAsPlAsPlAsPlAsPlAsPlAsPlAsPlAsPlAsPlAsPlAsPlAec59cAAAAHHRSTlMAAQUHCQoRGBkcHz9AUFZecYCVqLTK0dPp7ff5cWDvugAAAG1JREFUKFPFjUcOgDAMBE0vCb0n/v87IZZBCeQIYuTDakfyAnxAqRFHn5B48IcIN7xoHNNfvcodEZxGFeDC5tGz8fRkbn1HT5YoaDKoKK8pCZ6dE4Cas7AF6mE5o3QE0cbmPGJqzQlr3IbH32IHtA8TFl6BBTUAAAAASUVORK5CYII=')";
                a.setAttribute('download','');
                container.appendChild(a);
            }
        }
    });
})();