Skip to content

Commit

Permalink
Merge pull request #614 from Apostolique/dev
Browse files Browse the repository at this point in the history
ssl fix
  • Loading branch information
Apostolique committed Apr 20, 2016
2 parents 5e67b00 + 2e6d9b0 commit f3300c8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions launcher.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ SOFTWARE.*/
// @name AposLauncher
// @namespace AposLauncher
// @include http://agar.io/*
// @version 5.040
// @version 5.041
// @grant none
// @author http://www.twitch.tv/apostolique
// ==/UserScript==
var aposLauncherVersion = 5.040;
var aposLauncherVersion = 5.041;

var showAd = true;

Expand Down Expand Up @@ -98,7 +98,7 @@ function addAd() {

var script = document.createElement('script');
script.type = 'text/javascript';
script.src = 'http://pagead2.googlesyndication.com/pagead/show_ads.js';
script.src = '//pagead2.googlesyndication.com/pagead/show_ads.js';
document.body.appendChild(script);
}

Expand Down

2 comments on commit f3300c8

@igor200801
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

// @name AposLauncher
// @namespace AposLauncher
// @include http://agar.io/*
-// @Version 5.040
+// @Version 5.041
// @grant none
// @author http://www.twitch.tv/apostolique
// ==/UserScript==
-var aposLauncherVersion = 5.040;
+var aposLauncherVersion = 5.041;

var showAd = true;

@@ -98,7 +98,7 @@ function addAd() {

  var script = document.createElement('script');
  script.type = 'text/javascript';

@icy9
Copy link

@icy9 icy9 commented on f3300c8 May 13, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

NICE!!!

Please sign in to comment.