Skip to content

Commit 5f9c0e3

Browse files
committedMar 18, 2017
Less ads, less popups
1 parent a818fe3 commit 5f9c0e3

File tree

4 files changed

+82
-20
lines changed

4 files changed

+82
-20
lines changed
 

‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.idea

‎DIU.meta.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// ==UserScript==
22
// @name Digitally Imported Userscript
33
// @namespace LTKDIFMU
4-
// @version 2016.1.31
4+
// @version 2017.3.18
55
// @author LethaK Maas
66
// @description Removes afk popup and minimize ads if possible
77
// @include http://www.di.fm*

‎DIU.user.js

+60-16
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// ==UserScript==
22
// @name Digitally Imported Userscript
33
// @namespace LTKDIFMU
4-
// @version 2016.1.31
4+
// @version 2017.3.18
55
// @author LethaK Maas
66
// @description Removes afk popup and minimize ads if possible
77
// @include http://www.di.fm*
@@ -12,25 +12,69 @@
1212
// @grant none
1313
// ==/UserScript==
1414
(function () {
15+
setInterval(function(){
1516

16-
setInterval(function(){
17+
try{
1718

18-
// AFK MUTE
19-
di.app.timedAlerts.stop();
2019

21-
// Ads
22-
//AudioAddict.WP.AdManager.providers = {}
23-
//AudioAddict.Ad.adswizz = {};
24-
AudioAddict.WP.wp.adManager.stop();
25-
AudioAddict.webplayer.adblocks.gracePeriodTimer_.finish_();
26-
AudioAddict.webplayer.adblocks.gracePeriodTimer_.stop();
27-
AudioAddict.webplayer.adblocks.adEnd_();
28-
AudioAddict.webplayer.adblocks.adBlockEnd();
20+
jQuery('[id^="adprovider"]').remove();
21+
//$(document).trigger("ad-end");
22+
//di.eventbus.trigger("webplayer:ad:end");
2923

24+
jQuery(document).on("ad-begin", function(e){
25+
console.warn('Ad begin event (muting) ', e);
26+
AudioAddict.WP.wp.mute();
27+
});
28+
jQuery(document).on("ad-end", function(e){
29+
console.warn('Ad end event (unmuting) ', e);
30+
AudioAddict.WP.wp.unMute();
31+
});
3032

31-
// Ads panel
32-
jQuery('#panel-ad > div.panel-header > div.icon-cross3.panel-close.icon').trigger('click');
3333

34-
},2000);
34+
di.app.module("WebplayerApp.Ads.Adblocks").logger = new di.log.Console("WebplayerApp.Ads.Adblocks (Silenced)");
35+
di.app.module("WebplayerApp.Ads.Supervisor").logger = new di.log.Console("WebplayerApp.Ads.Supervisor (Silenced)");
3536

36-
}) ()
37+
di.app.module("WebplayerApp.Ads.Adblocks").adHasVisual = function(){
38+
return false;
39+
};
40+
41+
di.app.module("WebplayerApp.Ads.Adblocks").onAdBlockEnd = function(){
42+
this.adblockActive = !1;
43+
di.eventbus.trigger("webplayer:adblock:end");
44+
};
45+
46+
di.app.module("WebplayerApp.Ads.Adblocks").onAdBegin = function(e, t) {
47+
return void 0;
48+
};
49+
50+
NS("AudioAddict.WP.AdManager").providers = null;
51+
NS("AudioAddict.WP.AdManager.providers");
52+
53+
di.app.module("WebplayerApp.Ads.Supervisor").supervise = function(e){};
54+
di.app.module("WebplayerApp.Ads.Supervisor").eligibleForPreroll = function(){return false;};
55+
di.app.module("WebplayerApp.Ads.Supervisor").eligibleForMidroll = function(){return false;};
56+
di.app.module("WebplayerApp.Ads.Supervisor").requestAd = function(e){};
57+
di.app.module("WebplayerApp.Ads.Supervisor").selectAds_ = function(e){return [];};
58+
di.app.module("WebplayerApp.Ads.Supervisor").startAd = function(e){return };
59+
di.app.module("WebplayerApp.app.webplayer").submodules.ads = null;
60+
di.app.timedAlerts.stop();
61+
di.app.WebplayerApp.Ads.Provider = null;
62+
//AudioAddict.WP.wp.adManager.stop();
63+
64+
//AudioAddict.WP.adManager = null;
65+
//AudioAddict.WP.wp.adManager = null;
66+
67+
NS("AudioAddict.WP").AdManager = null;
68+
NS("AudioAddict.WP").AdProvider = null;
69+
di.app.webplayer.ads = null;
70+
71+
NS("AudioAddict.WP.wp").initAdManager = function(){ return null;};
72+
73+
74+
jQuery('.premium-upsell').remove();
75+
} catch(ex){
76+
console.warn('An error occured while silencing ads', ex);
77+
}
78+
79+
}, 500);
80+
})();

‎README.md

+20-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,30 @@
11
# Digitally Imported Userscript
22

3-
userscript aimed to minimize Ads and AFK-auto-mute on Digitally Imported (di.fm). Load with greasemonkey or tampermonkey browser extension
3+
userscript aimed to minimize and block ads
4+
5+
6+
## Features
7+
8+
* Removes "premium" ad popup
9+
* Removes "premium" ad section on all pages
10+
* Prevents **some** ads to reach your ears by bypassing them
11+
* Auto mute when an ad is playing, auto unmute when finished
12+
* Breaks the anti-AFK system, so you can let the music run for hours without any human interaction
13+
14+
15+
## Installation
16+
17+
Load this [userscript](https://github.com/lethak/digitally_imported_userscript/raw/master/DIU.user.js) with [greasemonkey](https://addons.mozilla.org/en-gb/firefox/addon/greasemonkey/) or [tampermonkey](https://chrome.google.com/webstore/detail/tampermonkey/dhdgffkkebhmkfjojejmpbldmpobfkfo) browser extension
418

519
Userscript: https://github.com/lethak/digitally_imported_userscript/raw/master/DIU.user.js
620

21+
## Still polluted by ads ?
722

23+
Let me know via the "issue" section of this repository, or submit a pull request if you know how to fix the script.
824

25+
If you can afford it, please consider [becoming premium](https://www.di.fm/premium). You will get access to DI in high quality and can listen from VLC or other players.
926

1027

11-
# Not actively maintained
28+
## Looking for maintainers
1229

13-
* I am not listening to DI anymore from their website... to many ads
30+
I am not listening to DI as often as I used to, please let me know if you want to be involved with this repo

0 commit comments

Comments
 (0)
Please sign in to comment.