Greasy Fork 支持简体中文。

Disable Auto-Refresh on Indian Express

This script can be used to disable the auto-refresh feature of The Indian Express

  1. // ==UserScript==
  2. // @name Disable Auto-Refresh on Indian Express
  3. // @namespace Violentmonkey Scripts
  4. // @match https://indianexpress.com/*
  5. // @grant none
  6. // @locale
  7. // @version 1.0
  8. // @license MIT
  9. // @description This script can be used to disable the auto-refresh feature of The Indian Express
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14. window.onload = function() {
  15. var meta = document.createElement('meta');
  16. meta.httpEquiv = "refresh";
  17. meta.content = "1800";
  18. document.getElementsByTagName('head')[0].appendChild(meta);
  19. }
  20. })();