Review waiting, please be patient.
This may take 3 months or more, since drafts are reviewed in no specific order. There are 4,805 pending submissions waiting for review.
Where to get help
How to improve a draft
You can also browse Wikipedia:Featured articles and Wikipedia:Good articles to find examples of Wikipedia's best writing on topics similar to your proposed article. Improving your odds of a speedy review To improve your odds of a faster review, tag your draft with relevant WikiProject tags using the button below. This will let reviewers know a new draft has been submitted in their area of interest. For instance, if you wrote about a female astronomer, you would want to add the Biography, Astronomy, and Women scientists tags. Editor resources
Reviewer tools
|
Submission declined on 15 June 2026 by EatingCarBatteries (talk).
Where to get help
How to improve a draft
You can also browse Wikipedia:Featured articles and Wikipedia:Good articles to find examples of Wikipedia's best writing on topics similar to your proposed article. Improving your odds of a speedy review To improve your odds of a faster review, tag your draft with relevant WikiProject tags using the button below. This will let reviewers know a new draft has been submitted in their area of interest. For instance, if you wrote about a female astronomer, you would want to add the Biography, Astronomy, and Women scientists tags. Editor resources
This draft has been resubmitted and is currently awaiting re-review. |
Comment: I feel like this may be worth an article, but as of right now you are linking to user-generated sources (like forums) and extension store pages. Besides expanding this draft, you could always add the content into existing pages, for example Browser extension. EatingCarBatteries (contribs | talk) 20:41, 15 June 2026 (UTC)
A userstyle (or user style) is a user-authored stylesheet, written in Cascading Style Sheets (CSS) or a CSS preprocessor language such as Stylus, Less, or Sass.[1] Userstyles change the appearance of web pages in the user's browser (also known as skinning), primarily for the purposes of modifying color schemes, hiding unwanted elements (such as for ad blocking), or improving layouts and/or accessibility.[2][3][4][5]
History
editUserstyle functionality was historically included in major browser distributions through customization settings such as Firefox's userContent.css,[6][7] Google Chrome's User StyleSheet/Custom.css,[8] and Safari's advanced "Style sheet" setting.[9] As most major browser distributions have since removed or phased out userstyles features,[10][11] userstyles are now more often applied through userstyles managers.
Userstyle managers
editA userstyle manager is a browser extension that provides a user interface to edit and organize userstyles. Userstyle managers perform a variety of functions, including but not limited to managing and syncing installed userstyles across browsers and profiles, checking for updates of installed userstyles, compiling stylesheets authored in preprocessor languages, injecting stylesheets into web pages, and patching browser security policies such as Content Security Policy to allow for userstyle functions.
Popular userstyle managers include Stylus,[12], xStyle,[13] and Cascadea.[14]
Stylish
editThe earliest known userstyle manager, Stylish,[15][16] was the predominant userstyle manager from its inception in 2005 until the late-2010s.
In 2018, it was revealed that that the extension had been collecting the complete web browsing history of its users without consent after an undisclosed sale of the extension two years earlier.[17]
Userstyle repositories
editUserstyles were historically shared and published in large centralized websites known as userstyle repositories. The now-defunct userstyles.org, also the homepage for the Stylish userstyles manager, was the first of such userstyles repositories and was popular during the 2010s.
Following the third-party acquisition of Stylish and userstyles.org in 2016, userstyles.org became increasingly inaccessible to users due to frequent downtime. As a result, archives of the site's content and user-submitted userstyles have been made to support continued usage of older userstyles.[18] Since 2020, the userstyle repository userstyles.world has been popular among the userstyles community as an open source alternative.[19]
Userstyles are often installed directly from software development version control platforms such as GitHub.[20] Userstyle formats like UserCSS, which are installable directly from a file URL, have encouraged publishing through individual software repositories.
UserCSS
editSome userstyle managers, namely Stylus and xStyle, support a specific format of userstyle known as UserCSS. UserCSS userstyles use a .user.css file extension, and include a metadata section at the top of the file noted with a special /* ==UserStyle== comment.[21]
/* ==UserStyle==
@name Example UserCSS style
@namespace github.com/openstyles/stylus
@version 1.0.0
@license unlicense
@preprocessor default
@var color link-color "Link Color" red
==/UserStyle== */
@-moz-document domain("example.com") {
a {
color: var(--link-color);
}
}
UserCSS metadata may include the following fields, though there is no definitive specification for the UserCSS metadata format and userstyle managers may differ in support.[22]
@name- The name of the userstyle.
@namespace- The namespace of the userstyle. The combination of
@nameand@namespacemust be unique for each userstyle. Used to help distinguish between userstyles with the same name. Usually consists of the author's nickname or homepage, often in the form of a URL. @version- The version of the userstyle. The field is typically considered required by userstyle managers, and is considered when checking for updates to the userstyle. Usually in the SemVer (semantic versioning) format.
@description- A description of the userstyle.
- The author of the userstyle. Consists of the author's name and optionally an associated email or URL.
@homepageURL- The homepage URL of the userstyle.
@supportURL- The support URL of the userstyle, to provide users with a link to give feedback to the author.
@updateURL- The update URL of the userstyle. Consists of a URL to a userstyle file, used to compare against for updates. When not defined, the userstyle is updated from the original URL used for installation, if any.
@license- The license of the userstyle in the SPDX license identifier format.
@preprocessor- The preprocessor of the userstyle, such as Stylus, Less, or Sass. When undefined, standard CSS syntax is assumed.
@var- Used to define user options for the userstyle. May support a variety of types, such as for text, numbers, colors, toggles, and selecting from predefined options.
See also
editReferences
edit- ↑ "User Agent Accessibility Guidelines (UAAG) 2.0". W3C Web Accessibility Initiative. 15 December 2015. Retrieved 16 June 2026.
user style sheet: Style sheets that are not provided by the web content author. The user interface for configuring user style sheets can be targeted at advanced users.
- ↑ Willis, Nathan (7 May 2007). "Make the whole Web look better with Stylish". Linux.com. Archived from the original on 8 March 2018.
- ↑ Pataki, Daniel (3 July 2008). "Redesign your Google Calendar with a custom skin - gHacks Tech News". gHacks Technology News. Retrieved 16 June 2026.
- ↑ Gordon, Whitson (9 November 2011). "Fix Gmail's Newest Annoyances with These Userstyles and Userscripts". Lifehacker.
- ↑ Kyrnin, Jennifer (26 January 2021). "Why You Should Use a User Style Sheet". ThoughtCo.
- ↑ "Customizing Mozilla". www-archive.mozilla.org. 21 April 2008.
User CSS (changing fonts, colors and other style): [...] the user can override them with two plain text files, called userContent.css [...] userContent.css controls CSS for content inside windows.
- ↑ "What is userChrome.css? What can it do?". www.userchrome.org.
- ↑ "Support user stylesheet [41011510] - Chromium". issues.chromium.org. Retrieved 16 June 2026.
Enabled with the --enable-user-stylesheet flag which causes chrome to read <user-data-dir>/<profile>/User StyleSheet/Custom.css at startup and set it as the user style sheet.
- ↑ "Change Advanced settings in Safari on Mac". Apple Support. Retrieved 16 June 2026.
Style sheet: Use your own CSS instead of webpage style sheets.
- ↑
- For the related commit, see "Issue 66383005: Remove the concept of user stylesheets. - Code Review". codereview.chromium.org.
- For the related issue, see "Support user stylesheets [41091633] - Chromium". issues.chromium.org.
- ↑ "1541233 - [Perf] Stop loading userContent.css or userChrome.css by default unless a preference is set". bugzilla.mozilla.org.
- ↑ "Stylus – Get this Extension for 🦊 Firefox (en-US)". addons.mozilla.org. Retrieved 15 June 2026.
- ↑ "xStyle - Chrome Web Store". chromewebstore.google.com.
- ↑ "Cascadea - Remix the web". Retrieved 16 June 2026.
- ↑ Jason Barnabe (9 October 2005). "Stylish 0.1.1 Released [11 Oct]". MozillaZine. Archived from the original on 10 December 2005.
- ↑ "Stylish - Custom themes for any website – Get this Extension for 🦊 Firefox (en-US)". addons.mozilla.org. Retrieved 15 June 2026.
- ↑ Heaton, Robert (2 July 2018). ""Stylish" browser extension steals all your internet history".
- ↑ "UserStyles.org Archive". uso.kkx.one. Retrieved 15 June 2026.
- ↑ "Website themes and skins — UserStyles.world". userstyles.world. Archived from the original on 8 June 2026. Retrieved 15 June 2026.
- ↑ "userstyle · GitHub Topics". GitHub. Archived from the original on 24 April 2026. Retrieved 15 June 2026.
- ↑ "UserCSS". openstyles/stylus. GitHub. Retrieved 17 June 2026.
- ↑ "Writing UserCSS". openstyles/stylus. GitHub. Retrieved 17 June 2026.


- provide significant coverage: discuss the subject in detail, not just brief mentions or routine announcements;
- are reliable: from reputable outlets with editorial oversight;
- are independent: not connected to the subject, such as interviews, press releases, the subject's own website, or sponsored content.
Please add references that meet all three of these criteria. If none exist, the subject is not yet suitable for Wikipedia.