Instagram Larger Video Popup

Makes the Instagram video popup LARGER

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name        Instagram Larger Video Popup
// @namespace   Violentmonkey Scripts
// @include     *instagram.com*
// @version     0.12
// @description Makes the Instagram video popup LARGER
// @author      goldnick7
// @grant       none
// ==/UserScript==


// NOTE: this only works for videos

(function () {
    'use strict';

    function videoFixer() {
        var player = document.querySelector('video:not([fixed])')
        if(!player)
            return
        document.getElementsByClassName("PdwC2 fXiEu s2MYR")[0].style="max-width: 1200px;margin-top: -37px;" //adjust this value for your resolution
        document.getElementsByClassName("kPFhm B1JlO OAXCp   ")[0].style="padding-bottom: calc(100% - 1px);"
        document.getElementsByClassName(" _65Bje  coreSpriteRightPaginationArrow")[0].style="left: 1100px;" //right arrow
        document.getElementsByClassName("ITLxV  coreSpriteLeftPaginationArrow ")[0].style="left: -210px;" //left arrow
    }

    setInterval(videoFixer, 10);
})();