Limit Twitter

Use your time effectively and make the world better!

اعتبارا من 21-09-2019. شاهد أحدث إصدار.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

ستحتاج إلى تثبيت إضافة مثل Stylus لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتتمكن من تثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

(لدي بالفعل مثبت أنماط للمستخدم، دعني أقم بتثبيته!)

// ==UserScript==
// @name         Limit Twitter
// @namespace    https://twitter.com/seiun_kunisaki
// @version      1.1.1
// @description  Use your time effectively and make the world better!
// @author       @seiun_kunisaki
// @match        https://twitter.com/*
// @match        https://mobile.twitter.com/*
// @run-at       document-start
// @grant        none
// ==/UserScript==

(function() {
  'use strict';

  // TODO: resolve need to super reload
  window.addEventListener('DOMContentLoaded', function(){

    /* == User Setting Start == */
    var remainSecond = 60;
    var baseStr = {'ja': '残り:%d 秒', 'zh': '剩下:%d 秒',
                   'id': '%d detik tersisa', 'pt': '%d segundos restantes',
                   'de': 'Noch: %d Sekunden', 'es': '%d segundos restantes',
                   'nl': '%d seconden resterend', 'fr': '%d secondes restantes',
                   'it': '%d secondi rimanenti', 'ko': '나머지:%d 초',
                   'en': 'remaining:%d s', 'default': 'remaining:%d s'};
    var redirectUrl = 'https://www.hellowork.go.jp/'; // Introducing your work :)
    var forceSPmode = false; // apply SmartPhone mode to PC browser. true or false

   /*  == User Setting End == */

    var htmlLang = document.documentElement.getAttribute('lang');
    if (!baseStr[htmlLang]) htmlLang = 'default';

    var originalStr = null;
    var divElement = null;

    setInterval(countDown, 1000);

    function countDown() {


      if (remainSecond === 0) document.location.href = redirectUrl;

      // PC mode
      if ((location.host === 'twitter.com' || window.innerWidth >= 500) &&
          !forceSPmode) {
        if (location.pathname !== '/home') return;
        var h2s = document.getElementsByTagName('h2');
        if (h2s && originalStr === null) {
          originalStr = h2s[1].innerHTML; // <h2>Home</h2> is 2nd h2 tag
        }
        h2s[1].innerHTML = originalStr + " " +
            baseStr[htmlLang].replace('%d', remainSecond);
      } else {
      // SmartPhone mode
        if (location.pathname !== '/home') {
          if (divElement === null) addCountElement();
          return;
        }
        removeCountElement();
        addCountElement();
      }
      remainSecond--;
    }

    function addCountElement() {
      divElement = document.createElement('div');
      divElement.style.width = '70%';
      divElement.style.height = '50px';
      divElement.style.position = 'fixed';
      divElement.style.bottom = '13px';
      divElement.style.left = '13px';
      divElement.style.margin = '0 auto';
      divElement.style.border = 'solid 5px black';
      divElement.style.background = '#FFFFFF';
      divElement.style.overflow = 'hidden';
      divElement.style.zIndex = 2;
      divElement.style.fontSize = '30px';
      divElement.style.textAlign = 'center';
      divElement.style.verticalAlign = 'center';
      document.body.appendChild(divElement);
      divElement.innerHTML = baseStr[htmlLang].replace('%d', remainSecond);
    }

    function removeCountElement() {
      if (divElement) {
        divElement.parentNode.removeChild(divElement); // remove self
      }
    }
  });
})();