Update README to use HTTPS instead of HTTP

HTTPS is good to push for wherever possible,
even if the Cookie Clicker site itself does not support it now.

(cherry picked from commit 98924bc12e)
This commit is contained in:
Valters Jansons
2018-02-25 12:24:31 +02:00
parent e59b69e3f2
commit 4ad6cc9fe0

View File

@@ -54,7 +54,7 @@ Copy this code and save it as a bookmark. Paste it in the URL section. To activa
```javascript ```javascript
javascript: (function () { javascript: (function () {
Game.LoadMod('http://aktanusa.github.io/CookieMonster/CookieMonster.js'); Game.LoadMod('https://aktanusa.github.io/CookieMonster/CookieMonster.js');
}()); }());
``` ```
@@ -64,7 +64,7 @@ For beta, use the following instead:
```javascript ```javascript
javascript: (function () { javascript: (function () {
Game.LoadMod('http://aktanusa.github.io/CookieMonster/CookieMonsterBeta.js'); Game.LoadMod('https://aktanusa.github.io/CookieMonster/CookieMonsterBeta.js');
}()); }());
``` ```
@@ -84,7 +84,7 @@ If you'd rather use the addon as a script via per example *Greasemonkey* or *Tam
(function() { (function() {
var checkReady = setInterval(function() { var checkReady = setInterval(function() {
if (typeof Game.ready !== 'undefined' && Game.ready) { if (typeof Game.ready !== 'undefined' && Game.ready) {
Game.LoadMod('http://aktanusa.github.io/CookieMonster/CookieMonster.js'); Game.LoadMod('https://aktanusa.github.io/CookieMonster/CookieMonster.js');
clearInterval(checkReady); clearInterval(checkReady);
} }
}, 1000); }, 1000);
@@ -104,7 +104,7 @@ If you are using the beta, use this instead:
(function() { (function() {
var checkReady = setInterval(function() { var checkReady = setInterval(function() {
if (typeof Game.ready !== 'undefined' && Game.ready) { if (typeof Game.ready !== 'undefined' && Game.ready) {
Game.LoadMod('http://aktanusa.github.io/CookieMonster/CookieMonsterBeta.js'); Game.LoadMod('https://aktanusa.github.io/CookieMonster/CookieMonsterBeta.js');
clearInterval(checkReady); clearInterval(checkReady);
} }
}, 1000); }, 1000);
@@ -129,7 +129,7 @@ All suggestions are welcome, even the smallest ones.
# Contributors # Contributors
* **[Raving_Kumquat](http://cookieclicker.wikia.com/wiki/User:Raving_Kumquat)**: Original author * **[Raving_Kumquat](https://cookieclicker.wikia.com/wiki/User:Raving_Kumquat)**: Original author
* **[Maxime Fabre](https://github.com/Anahkiasen)**: Previous maintainer * **[Maxime Fabre](https://github.com/Anahkiasen)**: Previous maintainer
* **[Alderi Tokori](http://forum.dashnet.org/profile/Alderi)**: ROI calculations (unused now) * **[Alderi Tokori](http://forum.dashnet.org/profile/Alderi)**: ROI calculations (unused now)
* **[Alhifar](https://github.com/Alhifar)**: Missed Golden Cookie Stat * **[Alhifar](https://github.com/Alhifar)**: Missed Golden Cookie Stat