Where to take Stylish ext ?

General discussion, compatibility and contributed extensions.

Moderators: Lootyhoof, FranklinDM

Locked
jkeks

Where to take Stylish ext ?

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 ?

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 ?

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