1<?xml version="1.0" encoding="UTF-8"?>
2<inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension">
3    <name>Guillotine</name>
4    <id>org.inkscape.guillotine</id>
5
6    <dependency type="extension">org.inkscape.output.svg.inkscape</dependency>
7
8    <param name="directory" type="string" gui-text="Directory to save images to:">~/</param>
9    <param name="image" type="string" gui-text="Image name (without extension):">guillotined</param>
10    <param name="ignore" type="bool" gui-text="Ignore these settings and use export hints">false</param>
11
12    <effect needs-live-preview="false">
13                <object-type>all</object-type>
14                <effects-menu>
15                      <submenu name="Export"/>
16                </effects-menu>
17    </effect>
18
19    <script>
20        <command location="inx" interpreter="python">guillotine.py</command>
21    </script>
22
23</inkscape-extension>
24