diff --git a/Resources/Plugins/edit-design/notification.js b/Resources/Plugins/edit-design/notification.js
new file mode 100644
index 00000000..7232eab1
--- /dev/null
+++ b/Resources/Plugins/edit-design/notification.js
@@ -0,0 +1,29 @@
+run(){
+  var extend = function(target, source){
+    for(let prop in source){
+      target[prop] = source[prop];
+    }
+    
+    return target;
+  };
+  
+  const configFile = "config.json";
+  
+  $TDP.readFile(this.$token, configFile, true).then(contents => {
+    try{
+      loadConfigObject(extend(this.defaultConfig, JSON.parse(contents)));
+    }catch(err){
+      loadConfigObject(this.defaultConfig);
+    }
+  }).catch(err => {
+    loadConfigObject(this.defaultConfig);
+  });
+  
+  // config handling
+  this.defaultConfig = {
+  };
+  
+  var loadConfigObject = config => {
+    let css = window.TDPF_createCustomStyle(this);
+  };
+}