Releases: ankit/stylebot
Releases · ankit/stylebot
Version 3.0.1
Version 3
- Re-wrote extension from scratch using modern tools (PostCSS, Vue.js)
- Modern, cleaner Stylebot Editor UI
- Readability Mode - Make articles on any site readable by hiding
non-essential page elements like sidebars, footers and ads. Based on Mozilla Readability - Improved code editor based on Monaco Editor
- Support for all modern CSS syntax and rules
- CSS comments and ordering is retained across edits
- Numerous other bugfixes with the modern implementation
2.4.1
- Re-wrote options page for better experience and maintainability
- Code editor in the options page is now Monaco Editor
- Replace "Remove styling" in popup with toggle to enable/disable styling. This fixes a long-standing issue where users accidentally permanently deleted the styles applied to the page.
- Remove explicit Global Stylesheet setting in the options page
- Fix Changelog link in the options page
2.2
- Fix Options link for latest version of Chrome #294
- Fix bug in CSS selector generation #288
- Prevent ace editor overrides #286 #234
- Updated CSS parser to support
@media
and CSS selectors of typea[href="."]
#264 #197 - Fix issue when installing styles from social via browser menu #294
- All fixes in https://github.com/ankit/stylebot/issues?milestone=7&page=1&state=closed
2.1
- Fixed issue where comments were not saved. #250
- Support for
:nth-child
,:not
and similar modifiers. #249 - Rename "Reset Page" to "Remove Styling" in the browser action menu. #244
- Add confirmation when resetting a page from Stylebot panel to prevent accidental reset. #255
- Fixed expansion of rules on save such as
border
andbackground
. #257
2.0.1
2
- Watch the video
- Easy way to discover, preview and install styles from Stylebot Social. Click on the CSS icon in the browser bar.
- Easy sharing of styles to Stylebot Social (screenshot is automatically generated)
- Support for regular expressions for URLs. Start a regex with ^. See Pattern Matching in Stylebot
- Support for
@rules
@import, @keyframes, @font-face, @media, @page, @variables, @charset and @namespace
- Support a custom font stack in Basic Mode. The font stack shows recently used fonts
- Support for Google Web Fonts. Enter a Google Web Font name in Basic Mode and it is automatically added to the CSS. Try entering Lato. You will have to live with some console warnings.
- Design improvements to Stylebot Social
- Fixed issue where CSS may not be applied when tabs were first restored on browser start
- The CSS icon is now more prominent
- Fixed issues with the CSS icon not working/appearing at times. It now works on Gmail
- Removed the confusing "Enable Styling" option from the right click menu
- Undo support for Reset and Reset Page Buttons
- Fixed issue where global CSS was visible on raw XML pages
1.5
- Added support for wildcards
**
and*
in URL. Examples:docs*.google.com
: This will matchhttp://docs.google.com
,http://docs1.google.com
,http://docs2.google.com
and so on.*.ycombinator.com
: This will matchhttp://news.ycombinator.com
,http://apps.ycombinator.com
, etc.docs.google.com, spreadsheets.google.com
: This will match any URL that containsdocs.google.com
orspreadsheets.google.com
- For details, refer the Pattern Matching Guide
- Stylebot Panel Appearance and Layout Tweaks
- Added support for
@-webkit-keyframes
- Styles are not injected into
xml/json/pdf
content to prevent DOM pollution - Improved Styles list in Options
- Bugfixes