Where to take Stylish ext ?

Add-ons for Pale Moon and other applications
General discussion, compatibility, contributed extensions, themes, plugins, and more.

Moderators: FranklinDM, Lootyhoof

jkeks

Where to take Stylish ext ?

Unread post by jkeks » 2018-02-11, 09:11

I need to embed self styles on pages, where to find extensions to do it ?

User avatar
SpockFan02
Astronaut
Astronaut
Posts: 535
Joined: 2017-09-24, 16:35
Location: Mak pupulusšum, California

Re: Where to take Stylish ext ?

Unread post by SpockFan02 » 2018-02-11, 21:38

You can use Stylish. Once you have it installed, you can add and modify style sheets from the User Styles tab of the add-ons manager (about:addons). :D

jkeks

Re: Where to take Stylish ext ?

Unread post by jkeks » 2018-02-15, 05:47

Thanks, I use GreaseMonkey now for that:

Code: Select all

var css = document.createElement("style");
css.type = "text/css";
css.innerHTML = ".icon_copy_tiny::after{font-size: xx-large !important;}";
document.body.appendChild(css);
Some native JavaScript and embed there CSS .. cool !
But thx to you too

Locked