Blocker for Rankirani

جلوگیری از بازدید سایت های مشخص شده در blocklist

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

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

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name     Blocker for Rankirani
// @description جلوگیری از بازدید سایت های مشخص شده در blocklist
// @license MIT
// @version  1
// @include  *://rankirani.ir/*
// @grant    GM_setValue
// @namespace https://greasyfork.org/users/310316
// ==/UserScript==

blocklist = ["tadbirmail.ir", "qodsna.com", "eheyat.com", "www.mersadnews.ir", "sbnews.ir", "fater24.com", "eheyat.com", "salehintehran.ir", "www.mazandrooz.ir", "qodsna.com", "sorooshekhabar.ir", "ofoghetaze.com", "sorooshnews.com", "uromnews.ir", "www.sorooshekhabar.ir", "q27.ir", "goftarname.ir", "shabestan.ir", "tadbiretazenews.com", "usfacts.ir"];

var x = document.getElementsByClassName("h5 Currently-Viewing");
for (var i = 0; i < blocklist.length; i++) {
  if (x[0].textContent.indexOf(blocklist[i]) != -1) { //if (document.body.textContent.indexOf(blocklist[i])!=-1){
    unsafeWindow.open = function () {
      return null;
    };
    console.log("********blocked***********");
    //document.getElementsByClassName("btn btn-danger btn-sm font-xtx")[0].click(); //press cancel button.
  }

}