IMDb.com enable right click on images

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

当前为 2020-06-29 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name IMDb.com enable right click on images
  3. // @namespace https://openuserjs.org/users/cuzi
  4. // @license GPL-3.0-or-later
  5. // @copyright 2020, cuzi (https://openuserjs.org/users/cuzi)
  6. // @version 1.0
  7. // @description Enable right click on images in the IMDb.com media viewer
  8. // @author cuzi
  9. // @include https://www.imdb.com/*
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict'
  15.  
  16. window.setInterval(function() {
  17. document.querySelectorAll('div[class*="PortraitContainer"],div[class*="LandscapeContainer"]').forEach(function (div){
  18. div.style.zIndex = 2
  19. })
  20. }, 1000)
  21.  
  22. })();