Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialKieran Barker
15,028 PointsCreating my own extension for the new Firefox Quantum
I'd like to create my own extension for the new Firefox Quantum that makes the tabs rounded like they used to be. Learning how to code it isn't the issue. What I'm wondering is, does anyone know if it's actually possible to edit the look of the tabs with an extension? Thanks in advance! :)
1 Answer
Dave Harker
Courses Plus Student 15,510 PointsHi Kieran Barker,
A quick look around revealed two key things that hopefully when combined will result in your venture being successful.
How to change Mozilla Firefox tab appearance with CSS (Firefox 57+)
Since Firefox 57+, the only way to customize your browser UI is through userChrome.css
If you want Firefox tab curves back ... take a look at this github.
Mozilla Tabs API
In this how-to article weβll look at:
...
Manipulating a tabβs CSS.
If you want to add that functionality to a Firefox browser extension you can read more about Working with the Tabs API
I hope this helps you out.
Happy coding
Dave
Kieran Barker
15,028 PointsKieran Barker
15,028 PointsThank you so much! That's exactly what I was looking for!