-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhdrezka_[1.2].user.js
25 lines (24 loc) · 1001 Bytes
/
hdrezka_[1.2].user.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// ==UserScript==
// @name HDRezka Player Ads Disabler [1/2]
// @name:en HDRezka Player Ads Disabler [1/2]
// @namespace ANT0x1
// @version 1.3.1
// @date 2017-04-01
// @description Отключает рекламу в плеере на HDRezka.
// @description:en Disables all ads in player on site HDRezka.
// @author ANT0x1
// @match http://*.cdnapponline.com/*/iframe*
// @icon http://hdrezka.me/templates/hdrezka/images/favicon.ico
// @updateURL https://openuserjs.org/meta/ANT0x1/HDRezka_Player_Ads_Disabler_[12].meta.js
// @downloadURL https://openuserjs.org/install/ANT0x1/HDRezka_Player_Ads_Disabler_[12].user.js
// @run-at document-end
// @homepage https://openuserjs.org/scripts/ANT0x1/
// @grant none
// @copyright 2016, ANT0x1
// ==/UserScript==
(function() {
'use strict';
adv_enabled = false;
showVideo();
console.log("Ads disabled [1/2].");
})();