Plugin "CSS Prefixer"

This is command plugin for SynWrite editor.
It allows to insert needed vendor prefixes into CSS code.
Uses Python library "cssprefixer" (corrected manually for Python 3).
If selection is made (only normal selection supported) then only selection is changed, otherwise entire file is changed.

Plugin has command in SynWrite menu "Tools - Plugins".

Example

Such CSS code:

#wrapper {
    border-radius: 1em;
    transform: rotate(45deg)
}

will be changed to:

#wrapper {
    -webkit-border-radius: 1em;
    -moz-border-radius: 1em;
    border-radius: 1em;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
    }

How to install

Just open plugin's rar-file in SynWrite, and confirm installation.
Default hotkey can be changed using SynWrite command "Options - Advanced - Edit file SynPlugins.ini".

About

Author: Alexey T. (SynWrite author)