NiklasGollenstede / re-style

A user style manager for Firefox 57+ which can load local files and apply UI styles

Home Page:https://addons.mozilla.org/addon/re-style/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

reStyle — UI styles for Firefox 57

This user style manager supports the usual installation of styles from URL and polling those URLs for updates. In addition to that, you can load local styles and apply styles to the browser UI.

Installing styles

Styles can be installed from userstyles.org, GitHub or any other website that offers appropriate styles for download. On userstyles.org, open the styles detail page, choose your settings if the style offers any, then click the reStyle icon in the browsers toolbar and "Add style" in the popup. On other pages, you need to open the .css file before clicking the reStyle icon.

UI styles

Starting with Firefox 57, it is no longer possible for Add-ons to directly apply user styles to anything else than normal websites. As a workaround, reStyle recognizes styles that will no longer work and writes them to the userCrome.css (e.g. for the UI) and userContent.css (e.g. for about:-pages). The only major drawback of this compared to how Stylish for Firefox used to apply styles is that the browser must be restarted for changes to those files to be applied. When developing styles, it is possible to avoid frequent restarts, see Development Mode for more information.

Many UI styles will still be broken in Firefox 57+ due to the actual changes in the browser UI, but at least it will be possible to fix that and distribute the styles in a reasonably simple manner.

Development Mode

You can load styles from a local folder on your computer as user styles. Styles matching normal content pages should be re-applied immediately when the files are saved.

To develop chrome styles without restarting the browser after every change, the corresponding sections in the userCrome.css/userContent.css files can be edited through the Style Editor in the Browser Toolbox (Ctrl + Shift + Alt + I) or the page inspector on about:-pages.
Firefox applies changes made there after a short delay, and when saving (Ctrl+S), writes the new files to the disc. As an experimental feature, reStyle can detect these on-disc changes and map them back to the original (local) style files.

NativeExt

In order to do the things described above, NativeExt must be installed on the system. The add-on contains instructions on how to do that easily.

Permissions used

  • "Access your data for all websites": To apply styles to any website you choose.
  • "Access browser tabs": Apply styles to existing tabs (when installed/enabled/started).
  • "Access browser activity during navigation": Apply styles to new tabs/pages.
  • "Exchange messages with programs other than Firefox": Use NativeExt if installed. Useless otherwise.
  • "Display notifications to you": Success messages after user actions, error messages. Status changes.
  • "Access recently closed tabs": Under some rare conditions, reStyle needs to open temporary popups. This is used to remove them from the history after they are closed.

Implementation status

Reading styles locally, re-applying them on changes and applying UI styles works as intended (there is no way around the restart requirement). Applying normal content styles works, bit is still somewhat expensive. Improvements here require patches to Firefox. Automatic updates of remote styles (those installed from the internet) can not be disabled per style. The initial setup UI of this add-on itself still needs some work.

Meta comments

reStyle supports meta comment blocks similar to those used in user scripts. They start with ==UserStyle== and can, besides the non-functional properties @name, @author, @license and @description, contain @include rules, which allow authors to wirte styles that can be included on domains chosen by the user via reStyles UI.

Build

npm install npm start Then see the /build/ directory.

Create .png icon from .svg: svgexport icon.svg icon.png :128 Then compress with pngquant.

Project layout

The internal style management is entirely handled by scripts in the /background/ folder, /common/ contains a declarative description of the #options the user can set, and /views/ contains the .js and .css files that create reStyles UI (popup, extension pages).

Styles

There are tow places styles can come from and two places they can go. Styles can be installed as

  • RemoteStyles from any URL that points at a .css file (or .json in the format used by userstyles.org)
  • LocalStyles from a user chosen directory on the local computer.

Both extend Style. Their code is parsed into a Sheet with each @document block as a Section. When activated, the Style sorts through it's Sections and detects weather each section

  • can be dynamically applied as a WebStyle
  • or has to be written to userChrome/Content.css as a ChromeStyle (which has a .chrome and a .content property).

RemoteStyles store a JSON representation of themselves in browser.storage.local and can be restored after restarts with quite little computational effort. LocalStyles are re-parsed from their files on the disk at every start.

Views

Every .js or .html file or folder with a index.js or index.html in the /views/ folder will implicitly result in a extension page available as ...-extension://.../reStyle#<folder/file name without ext>. The scripts themselves are loaded in the background context and must export a function that will be passed the window of the visible page when one with the matching #-name is opened.

AMO code review notes

The exact version of the included YAML parser is https://github.com/jeremyfa/yaml.js/blob/v0.3.0/dist/yaml.min.js.

About

A user style manager for Firefox 57+ which can load local files and apply UI styles

https://addons.mozilla.org/addon/re-style/

License:Mozilla Public License 2.0


Languages

Language:JavaScript 97.0%Language:CSS 3.0%