mrbl / Antiblock-vk-player

// ==UserScript==
// @name         Antiblock-vk-player
// @namespace    https://openuserjs.org/users/mrbl
// @description  Убирает заглушку "Отображение видео из ВКонтакте заблокировано"
// @version      0.1.2
// @author       mrbl
// @copyright    2018, mrbl (https://openuserjs.org/users/mrbl)
// @include      *://vk.com/video_ext.php*
// @run-at       document-end
// @grant        none
// @license      MIT
// ==/UserScript==

(function () {
  'use strict';

  if (document.getElementById("video_ext_btn")) {
    document.body.innerHTML = "";
    var ifrm = document.createElement('iframe');
    ifrm.src = window.location.href;
    ifrm.style.position = "absolute";
    ifrm.style.border = "0";
    ifrm.style.padding = "0";
    ifrm.style.margin = "0";
    ifrm.style.width = "100%";
    ifrm.style.height = "100%";
    ifrm.setAttribute('allowFullScreen', '');
    document.body.appendChild(ifrm);
  }
})();