This file is indexed.

/usr/share/inkscape/extensions/addnodes.inx is in inkscape 0.48.5-3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="UTF-8"?>
<inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension">
    <_name>Add Nodes</_name>
    <id>org.ekips.filter.addnodes</id>
    <dependency type="executable" location="extensions">addnodes.py</dependency>
    <dependency type="executable" location="extensions">inkex.py</dependency>
    <param name="method" type="optiongroup" _gui-text="Division method">
        <_option value="bymax">By max. segment length</_option>
        <_option value="bynum">By number of segments</_option>
    </param>
    <param name="max" type="float" min="0.1" max="10000.0" _gui-text="Maximum segment length (px)">10.0</param>
    <param name="segments" type="int" min="1" max="1000" _gui-text="Number of segments">2</param>
    <effect needs-live-preview="false">
        <object-type>path</object-type>
        <effects-menu>
            <submenu _name="Modify Path"/>
        </effects-menu>
    </effect>
    <script>
        <command reldir="extensions" interpreter="python">addnodes.py</command>
    </script>
</inkscape-extension>