diff --git a/index.html b/index.html
index dede87f..8519dba 100644
--- a/index.html
+++ b/index.html
@@ -30,12 +30,11 @@
-
-
@@ -84,9 +83,27 @@
Parameters
>reset conf
+
+ let tlui = {};
+ const fetch_error = "Failed fetching the latest version of the TweakList manifest\n\nPlease open the console report this:\n\nhttps://github.com/couleur-tweak-tips/TweakList"
+
+ fetch('https://raw.githubusercontent.com/couleur-tweak-tips/TweakList/master/Manifests.json')
+ .catch(error => {
+ alert(fetch_error)
+ console.log(fetch_error)
+ })
+ .then(response => {
+ if (!response.ok) {
+ throw new Error(fetch_error);
+ }
+ return response.json();
+ })
+ .then(data => {
+ tlui = data
+ loadList(tlui);
+ })
+