Doska.ru and SS.com helper

This script disables Anti-Adblock and Clipboard madness

2017/09/05のページです。最新版はこちら

スクリプトをインストールするには、Tampermonkey, GreasemonkeyViolentmonkey のような拡張機能のインストールが必要です。

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

スクリプトをインストールするには、TampermonkeyViolentmonkey のような拡張機能のインストールが必要です。

スクリプトをインストールするには、TampermonkeyUserscripts のような拡張機能のインストールが必要です。

このスクリプトをインストールするには、Tampermonkeyなどの拡張機能をインストールする必要があります。

このスクリプトをインストールするには、ユーザースクリプト管理ツールの拡張機能をインストールする必要があります。

(ユーザースクリプト管理ツールは設定済みなのでインストール!)

このスタイルをインストールするには、Stylusなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus などの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus tなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

(ユーザースタイル管理ツールは設定済みなのでインストール!)

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==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);