IMDb.com enable right click on images

Enable right click on images in the IMDb.com media viewer

目前為 2020-06-29 提交的版本,檢視 最新版本

// ==UserScript==
// @name         IMDb.com enable right click on images
// @namespace    https://openuserjs.org/users/cuzi
// @license      GPL-3.0-or-later
// @copyright    2020, cuzi (https://openuserjs.org/users/cuzi)
// @version      1.0
// @description  Enable right click on images in the IMDb.com media viewer
// @author       cuzi
// @include      https://www.imdb.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict'

    window.setInterval(function() {
      document.querySelectorAll('div[class*="PortraitContainer"],div[class*="LandscapeContainer"]').forEach(function (div){
        div.style.zIndex = 2
      })
    }, 1000)

})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址