Guys, I'm a new in making JS extension.
:arrow: How can start with my JS? I want my CSS as my layout code. But, don't know how to insert my CSS code to a JS extension.
:arrow: Also, i have this JS
Add this css injector to the top of ur js file...copy the url of ur external css and paste where it ask.
Then use the js linker code on ur profile.
[quote]var css = document.createElement("link");
css.setAttribute("rel","stylesheet");
css.setAttribute("href","CSS_LINK_HERE");
document.getElementsByTagName("head")[0].appendChild(css);[/quote]