Doska.ru and SS.com helper

This script disables Anti-Adblock and Clipboard madness

Tính đến 05-09-2017. Xem phiên bản mới nhất.

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 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.

(Tôi đã có Trình quản lý tập lệnh người dùng, hãy cài đặt nó!)

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.

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

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

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

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

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

// ==UserScript==
// @name         Doska.ru and SS.com helper
// @namespace    http://blog.vienalga.net/
// @version      0.1 PoC
// @description  This script disables Anti-Adblock and Clipboard madness
// @author       Cukurgalva
// @match        https://www.doska.ru/*
// @match        https://www.ss.com/*
// @match        https://www.ss.ee/*
// @match        https://www.ss.lt/*
// @match        https://www.ss.lv/*
// @match        https://www.ss.pl/*
// @grant        unsafeWindow
// ==/UserScript==

(function(win, doc) {
    'use strict';

    doc.body.removeEventListener('copy', win.add_link_to_selection);
    setInterval(function(){
        win.AD_BLOCKER = false;
    }, 1000);

})(this.unsafeWindow || this, document);