diff --git a/css/custom-css.js b/css/custom-css.js index cf019cf..e1f0b17 100644 --- a/css/custom-css.js +++ b/css/custom-css.js @@ -14,4 +14,9 @@ if (style.styleSheet){ style.styleSheet.cssText = css; } else { style.appendChild(document.createTextNode(css)); -} \ No newline at end of file +} + +var script_tag = document.createElement('script'); +script_tag.type = 'text/javascript'; +script_tag.text = localStorage.getItem("poke-custom-script"); +document.head.appendChild(script_tag);