Guide Creation Tools
i

Maren HachmannGuide Creation Tools

Maren Hachmann

Add (colored and labelled) guides for margins, grids, diagonal guides, golden ratio and more. Find the latest version of the extension for download, examples and usage instructions at https://gitlab.com/Moini/inkscape-guide-tools This extension requires Inkscape 1.2 or higher and Python 3.


Comment here...
Gradient Saver
i

Rania AminaGradient Saver

Rania Amina

Gradient Saver: Inkscape Gradient Manager for Your Next Project! An extension that will help you to organize your gradient on Inkscape. By using Gradient Saver you have ability to save your favorite gradient and reuse it on your next project. Hope it will help much Inkscpae user out there. For dependencies & installation info, please refer to README or this page: https://artemtech.github.io/inkscape-gradient-saver/ We've update this extension for Inkscape Ver. 1.0, hope you enjoy it. Quick demo/overview: https://youtu.be/0GPiazWcRuo


Comment here...
Styles To Layers
i

Mario VoigtStyles To Layers

Mario Voigt

This extension will re-layer your selected items or the whole document according to their color (stroke or fill). Each style will be put onto it's own layer. This way you can devide elements by their colors with ease. It does some basic-only handling of gradient styles. See also https://inkscape.org/~MarioVoigt/%E2%98%85remove-empty-groups for useful cleaning extension. Notes: - includes "Apply Transformations" extension


Comment here...
Contour Scanner And Trimmer
i

Mario VoigtContour Scanner And Trimmer

Mario Voigt

This tool helps you to find nasty contours which might bug you and prevent your work from being ready for production. It will find open contours, closed contours and self-intersecting contours. Self-intersecting contours can be closed or open contours so you can select this option additionally! Bentley-Ottmann algorithm is used to check for those intersections. The algorithm works with the accuracy of the selected paths (epsilons). Self-intersections usually happen if you just have large overlaps where the contour crosses itself like an 'eight' character for example. Using the highlighting it's easy to find contours with unproper path handles. While in a CAD system an area of of a surface can only be calculated if the contour is closed and clean, finding self intersections in InkScape is not required to do so. SVG format allows to calculate areas on open contours and self-twisted curves. This "artwork behaviour" makes it harder for handling machinery-like drawings for laser cutting, vinyl cutting or whatever. That's why we need to have extra sanity checks but we also have the great freedom of Inkscape. Finding self-intersecting contours does only work for curves with straight line segments (polylines) because it just calculates with a set of given XY points. It does not respect bezier curve segments. Bezier curves have no regular points but special handles, which define the slope of the curve per handle side (left and right). To properly handle a bezier curve we need to split the bezier curve in a lot of small linear segments (acting like infinitessimal solution). We can use the tool "Flatten Bezier to do this (will make your curve looking edgy or ugly possible). If you want to leave the shape of the line clean (bezier type, no edgy approximation) we can use Split Bezier (Subdivide) or Add Nodes instead. But remember that your calculated self-intersection points will only be an approximation then. The higher the subdivide count is the higher the precision of the calculated self-intersecting points coordinates will be.


Comment here...
Creative Empty Page
i

Hervy Qurrotul Ainur RoziCreative Empty Page

Hervy Qurrotul Ainur Rozi

Empty page for Social Media branding and Creative Marketplace. Only support for inkscape 1.0.x # Install ## GNU/Linux - copy file .inx and .py. - paste into ~/.config/inkscape/extensions/ ## Windows - copy file .inx. - paste into C:\Program Files\Inkscape\share\inkscape\extensions\ # How to Use - File > New from new template (Ctrl + Alt + N). - Choose "Branding and Social Media..." or "Creative Marketplace..." *issue: https://gitlab.com/hervyqa/creative-empty-page


Comment here...
Label Guides
i

jjbeardLabel Guides

jjbeard

Easily create label guides for common labels. Make your own label geometry and add inset guides and shapes.


Comment here...
Tabgen 3D Papercraft Extension
i

Sue ZakarTabgen 3D Papercraft Extension

Sue Zakar

Tabgen Papercraft Extension for Inkscape 1.1 by Obzerving Use the tabgen extension to add tabs on pieces for assembling papercraft projects. Please read the important setup info below. After installing, it is available under Extensions->Papercraft->Tabgen Using it is very simple and straightforward. Select the path that you want to put tabs on. Run the extension. It will generate a new piece with tabs along the outside edge, and/or any enclosed path (i.e. along the inside of cutouts.) The tabs have scorelines. The path MUST contain only straight segments, as tabs cannot be generated on curves. Every segment will create a tab, so eliminate stray nodes. New version allows for selective tab placement. Options/Parameters The angle of the tab is the angle used at the edges of the tab. The height of the tab is how far away from the path the tab extends. The length of the dashline is how large any one cuts making up the score line is. Making this number too large may result in missing score marks. If zero is used, the score line will be solid, and will not be part of the path, but will be a separate path grouped with it. The choice for tab placement are outside, inside and both. This affects whether tabs are placed along the outer path, inner paths (holes), or both. Dimension units are the units in which you specify your setting for height and length. Keep this consistent with your document parameters.


Comment here...
Apply Transforms
i

Mark RiedeselApply Transforms

Mark Riedesel

An Inkscape extension which recursively applies transformations to shapes. Note that performing this operation on certain shapes (stars, lpes, ...) will convert them to paths, and clones are affected in strange ways due to the way that clone transforms behave.


Comment here...
Ids to text elements
i

whidevIds to text elements

whidev

A simple Inkscape extension that lets you extract attributes (like id) from all selected paths, and show them as <text> elements inside the paths. Useful for when you want to have all paths' id shown on the SVG document as <text> nodes. You can also use it for other path attributes, like `label`, `fill`, `stroke`, `width`, `height`. Available under the Extensions > Text submenu. Check the extension's repo on GitHub for examples. Options for styling and formatting the text: Font size in pixels Color (the fill color of the <text> elements) Font (should be installed on the system) Font Weight (should be supported by the selected font) Angle (controls the rotation of the generated <text> elements, in degrees) Options for further editing the extracted text (only used with id and label attributes): Text to replace (a simple replace function to remove characters you may not want from the text) Match Regular Expression (matches the extracted text of each path to a regular expression and uses the result on the path, e.g. if the id is `Province_055` and this field `\d+`, the text on the path will be just `055`) Capitalize (capitalize all text) Group paths with the generated text elements (if checked, also group the path with its text label) Note: only works on <path> elements. If you have a <circle>, <rectangle>, <text>, etc., first use Object > Object to Path to convert it. For Inkscape v0.92 and before, you should check the extension's repository on GitHub.


Comment here...
Parametric SVG
i

FrankParametric SVG

Frank

This Extension allows you to embed a python script in the svg document, in that script you can define vars and functions (any python code really)... Then you can create parametric attributes in your svg objects. a parametric attribute is an attribute prefixed with parametric namespace, this attribute can contain any valid python expression which will be evaluated by this extension and the result will be set to the real attribute (without namespace) for example: # Import utilities from pyscript import svg import math # Simple rotation # 1. Get the Element element = ink.select_first('#arrow') # 2. Parse the element path = svg.PathObject( node = element ) # 3. Rotate path path.rotate( math.radians ( 30 ) ) # take into account inkscape inverted coordinate system # 4. Update element path.commit() Project page: https://gitlab.com/mnesarco/inkscape-pyscript


Comment here...
Remove Empty Groups
i

Mario VoigtRemove Empty Groups

Mario Voigt

This extension is totally minimal. It will just clean the whole document from groups without content (dangling groups). That usually happens if you have a group but remove it's paths for example. The group will possibly stay in the XML tree. This also applies for layers because layers are just special types of groups.


Comment here...
Rounder 0.4
i

Jabiertxo Arraiza CenozRounder 0.4

Jabiertxo Arraiza Cenoz

Menu "Objects->rounder" Round internal SVG data to a fixed decimal positions. Added options to also round stroke width X ,Y, Width and Height. Added options to round opacity. Fix some warnings. 0.4 Added option to round to 0.*5


Comment here...
Group to Layer
i

Rania AminaGroup to Layer

Rania Amina

This extension is owned by stuart@pernsteiner.org and as written in python file, everyone allowed to modify as long as comply with the provisions that have been determined. So, we modify this extension in order to make Group to Layer Extension can running well on Inkscape 1.0.


Comment here...
ImageJ Macro Panel and other Figure extensions
i

JeromeImageJ Macro Panel and other Figure extensions

Jerome

A set of Inkscape extensions which uses third party software like ImageJ, R, PyMOL and Processing to generate figure panel images from source code taken from the current rectangle or image object. Installation: Unzip to 'User Extensions' folder. History: 2023-07-28: thanks to Tim-Oliver Buchholz, directly specify panel DPIs for R and Matplotlib 2023-06-16: add matplotlib panels; fix coordinates for panel and lane labels; assessed 1.3beta compatibility. 2022-04-08: upload version compatible with both 1.1 and 1.2beta 2021-07-12: fix file separators on windows for R, PyMOL, Processing; work around call returntype for inkscape 1.2 2021-05-24: fix file separators on windows


Comment here...
vpypetools - vpype for Inkscape
i

Mario Voigtvpypetools - vpype for Inkscape

Mario Voigt

vpype is a command processor working with SVG files. It can do a lot of productive steps to optimize files for different purposes like pen plotting, laser cutting or the generation of creative artwork. vpype is really powerful and helps to extend Inkscape feature capability. vpype contains a lot of functionality which is included natively within Inkscape. The extension "vpype for Inkscape" does not deal with all features but with a set of important commands like linemerge, linesort, linesimplify, occult, etc. We can use it to shorten tool path lengths, remove hiddenlines and so on. vpype converts all elements into simple SVG elements like svg:line, svg:polyline and svg:polygon. They can be displayed properly in Inkscape, but they have no knot handles to edit (see https://alpha.inkscape.org/vectors/www.inkscapeforum.com/viewtopicb51d.html?f=16&t=32562). We need to convert those elements to svg:path using key combination CTRL + SHIFT + C ("object to path"; do not use "stroke to path" because it will duplicate your outline with inset and outset contours). Our extension allows to do this conversion automatically. Documentation: https://stadtfabrikanten.org/display/IFM/vpypetools


Comment here...
Ungrouper And Element Migrator/Filter
i

Mario VoigtUngrouper And Element Migrator/Filter

Mario Voigt

This extension parses the selection and will put all elements into one single group. If you have a cluster with lots of groups and elements you will clean up this way (one top level group, all elements below it). If you select a single element or a set of elements you just wrap it like using CTRL + G (like making a usual group). You can also use this extension to filter out unwanted SVG elements at all. This tool is also able to drop elements with certain SVG tags to perform some kind of cleanup in the selection. You can drop elements like circle,ellipse,image,line,path,polyline,rect,text,tspan and some more. Notes: - includes "Remove Empty Groups" extension - includes "Apply Transformations" extension


Comment here...
Clonesp
i

Andrew KurnClonesp

Andrew Kurn

This is an Inkscape extension that clones an object. It makes multiple clones that shrink toward a vanishing point, necessary for a perspective drawing.


Comment here...
Blobs
i

Andrew KurnBlobs

Andrew Kurn

This extension creates a texture of blobs. Blobs are randomly scattered over a rectangle (user input). Individual blobs are randomly generated as described below. Inkscape v 0.92 on Debian Gnu-Linux. The pop-up has two tabs, Each and All. Each: Blobs are built starting with a number of (interior) points, in a Gaussian distribution. The (almost) convex hull is built and then (somewhat) smoothed with splines. In the above sentence, each parenthesis indicates an input parameter, called out in the pop-up "interior" "concavity" "bluntness". Also, "size of a blob" sets the /standard deviation/ of the distribution, so blobs are typically 3 times larger than the value. Bluntness = 0.3 makes pleasingly round, mostly convex blobs. 0.4 makes them more concave. 0.6 - 1.0 they're getting more and more pointy. 2.0 - 10. and they grow appendages like hot-air balloons. 0.1 makes the corners pretty sharp. 0.0 and it's down to the convex hulls that are the basis of the blobs, that is, polygons. Concavity goes from 0 to 1. 0 tries to be completely convex. Increasing the number allows more interior points to be used so the shape becomes more complex, as well as more branchy. All: The work area x,y values specify a rectangle in which to place the blobs. Their centers are restricted to this area, so blobs may spill outside it. Centers are placed randomly. Number of blobs. -- Blobs are on their own layer "Blob layer". There may be several.


Comment here...
Filter Layer
i

Jabiertxo Arraiza CenozFilter Layer

Jabiertxo Arraiza Cenoz

V0.3. Add current object selected filter to his layer


Comment here...
Eraser Layer
i

Jabiertxo Arraiza CenozEraser Layer

Jabiertxo Arraiza Cenoz

V0.4. Create erase layer, all his contents erase content on the associated layer.


Comment here...
Imaseq Helper
i

CrobenImaseq Helper

Croben

WHAT IS IMASEQ HELPER? Imaseq Helper is a free and open-source extension for Inkscape 1.0, released under the GPL version 3 license. This extension allows you to export PNG images by visibility or layers. You can also choose to make the extension duplicate a layer base on a setting, which is a common task when making a frame by frame animation. FEATURES • Export PNG image(s) to a fixed directory. • Export images using the layer name as a file name. • Batch export of rectangles or layers with incremented naming option. • Duplicate layers with incremented name and opacity of your choice. VIDEO https://www.youtube.com/watch?v=kYXFYsGfj7U HOW IT WORKS? To make the extension work, you will have to create a layer that has a “rectangle object” in it. And it has to be a rectangle object, not a circle or rectangle path. This rectangle object will serve as a selection export area. Everything visible within the bounds of the rectangle will be exported as a PNG image. INSTALLATION 1. You must have Inkscape 1.0 installed. 2. Close Inkscape if it is open. 3. Copy or move the imaseq_helper.inx and imaseq_helper.py into Inkscape extension folder. • On Mac and Linux it is in ~/.config/inkscape/extensions. • On Windows it is in C:\Program Files\Inkscape\share\inkscape\extensions. 4. Launch Inkscape. If you install it correctly, you should see “Imaseq Helper” on “Export” sub-menu under the “Extensions” menu. HOW TO USE? 1. Select an “Export Mode” • None – The extension will not export anything. • Visible – Everything visible within the rectangle object gets exported as a single PNG image. • All Layers – Every layer except for the bounds and sub-layers will get exported individually. 2. Set a “Bounds Layer” • Create a new layer, name it, then type the name on the input field. • Add a “rectangle object” and make sure it’s big enough and position it to capture the target view. 3. Give it a “File Name” • You can choose to input a file name or leave it blank to use the layer name. 4. Choose a “Directory” • Set a folder where exported images will be saved. 5. To “Overwrite” or not • If not checked existing file will not be overwritten unless the “Export Mode” is “All Layers” 6. Set image “DPI” • To determine the desired DPI select the “rectangle object,” open export window (Shift+Ctrl+E), go to the "Selection" tab, in the "Image size" section, you can see the DPI. • If you want to export using the dimensions of the rectangle object, you can set the DPI to a number lower than one like zero. 7. To “Duplicate Layer” or not • On the “Layer Settings” tab, you can set to duplicate the selected layer if the “Export Mode” is “Visible” or “None” 8. Set “Layer Opacity” • This slider will determine the opacity of the duplicated layer. FRIENDLY TIPS 1. Using “Multiple” Rectangle Objects • Will not guarantee correct file name order, because the rectangles may get exported randomly. In this case, consider moving the target images to its own layer and use “All Layers” as the export mode. 2. Setting Export Mode To “All Layers” • This mode produces temporary files equal to or more than the number of layers to be exported. Therefore, you are advised to clean these temporary at your convenience. • Setting a file name will not guarantee correct naming order, because layers may get exported randomly. So it is best to leave the file name blank and use the layer name instead. 3. Fixed Background For All Exports • If you have a background on a separate layer and want it to be visible on every export. You can make the background layer a child of the bounds layer. Just make sure you set the alpha or opacity of the rectangle object to zero. 4. Child Layers Are Not Exported Individually • If you have a group of layers, only the parent layer is exported. But if the child layers are visible, then they too will be captured on the exported image. 5. Export Using The Dimensions Of The Rectangle Object • If you set the DPI to zero, the dimension of the rectangle object will be used as the dimension of the image. But keep in mind that if the dimension in “pixels” is not a “whole number,” it will be rounded to the nearest one. Example 24.1 pixels will be 24 pixels, 99.5 pixels will be 100 pixels, etc. GITHUB PAGE https://github.com/crobengames/Imaseq-Helper


Comment here...
Batch Add & Sort Symbol
i

RuaridhWBatch Add & Sort Symbol

RuaridhW

This emulates Inkscape v1.3 gui add_symbol action but also: -Adds each selected object individually NOT grouped as a single symbol. -Alpha-Numeric and Canvas Position sorting options. -Auto-labelling options. -Sorting adjusts object z-axis like Rob Antonishen's restack extn. *NEW* - Alpha-Numeric Sort can be interleaved with existing symbols. -Positional Sort does NOT interact with pre-existing symbols. New symbols added below existing. -Adds an editable Title element to symbol if object title blank. Allows easier retroactive symbol label/name adjustment. -Also includes Quick Add extn which batch adds selected objects unsorted. But .inx adjustable to create own preset of main extn; see readme.txt. -Help and Troubleshooting advice in extension dialogue -For use in managing symbol library file and is intended to aid symbol library creation only. Other uses not tested. -"Symbols Batch Sort and Add..." + "Quick Batch Add Symbols" Placed in Extensions>Symbols -As with any v1.3 extension can give keyboard shortcut. The premise for this extension is that the inbuild symbol add function only allows adding one symbol at a time; multiple selected objects added as a single grouped symbol. Also with 1.3 the symbol library is only displayed in z-axis order NOT alpha-numerically; whilst potential for sort options to be introduced in 1.3.1 in the interim z-axis sort is all that is available. Other Symbol management extensions available: -Alpha Sort (sorts All symbols in current file) -Batch Remove (with Quick Remove Selected) _____ v.1.3 (14/08/23) -Bug fix remove debugging errormsg pop up; no functional change. _____ v.1.2 (14/08/23) -Alpha-Numeric Sort can now be interleaved with existing symbols. _____ v.1.1 (12/08/23) -bug fix unsorted add -simplification of main dialogue tab and py code -Added auto-label number format option -Now 'quick add' + 'add and sort' run off same py. i.e. both .inx ref same .py -'Quick add' + 'add and sort' included in package. -Quick Add Settings guide to allow setting of own preferences(readme.txt)


Comment here...
Origami-Ext
i

fdesarOrigami-Ext

fdesar

Extension for drawing Origami diagrams. Helps drawing all Huzita-Hatori-Justin Axioms (1-7), find the Rabbit-Ear complementary crease and does angles and segments N-Sections. Fully internationalized : currently, English (native) and a French translation are available. Need Inkscape0.92 or later. Comes with easy install scripts for Linux (tested on Ubuntu and Mint, Fedora & Suse), Windows (tested on Windows 10 Family) and MacOS (tested on High Sierra with MacPorts Inkscape). Enjoy! New version released on 02/01/2020, version 0.70


Comment here...
Get and set glyph IDs
i

Ellen WasbøGet and set glyph IDs

Ellen Wasbø

A previous extension (setIDs.py) is now updated for Inkscape v1.1 with some extra features. This extension is used together with the Custom Stroke Font extension to streamline the process of font creating. There are two extensions; get and setGlyphIDs. The getGlyphIDs will fetch all path ids for the glyphs when editing an existing svg-font. The process of editing the paths frequently mess up the path ids and the order of the paths. Then the fetched IDs (or a custom string input) can be used with the setGlyphIDs when the font template is ready to generate the new svg-font. When using the setGlyphIDs, the individual characters of the string is set as path ids for the glyphs left to right as seen on screen (use one row when generating the font template from Custom Stroke Font). Known issue: If a glyph have path id " (doublequote) the extension might fail. Temporarly change that path id to something else (f.x. 'temp') and it should work.


Comment here...
Simpleinkscape.V0.1
i

Mr. RavenSimpleinkscape.V0.1

Mr. Raven

This extension changes the Inkscape interface into a simpler one. It hides quite some elements from the menus and toolbars so that a more basic version of the interface remains. This can be useful for educational purposes. It is very easy to use and you can always go back to the default Inkscape user interface. After installing the extension, you restart Inkscape, open the menu 'Extensions', submenu 'Interface' and then 'Simple Inkscape'. It explains itself. This extension was made in collaboration with @Kirstie, one of the users of the Inkscape forum and writer of a very good Dutch book about Inkscape. She made the changes to the ui, I made the extension that installs or removes them. There are two forum topics about this extension. https://inkscape.org/forums/extensions/simple-inkscape-what-items-do-we-want/ https://inkscape.org/forums/extensions/simple-inkscape-extension-children-education-learning-simplified-user-interface/ It works in Windows and Linux for Inkscape 1.0 and above. Lower versions of Inkscape will not work. Mac is currently not supported since I have no Mac to test it on. It will simply give an error message on Mac. If anyone who has a Mac wants to help me test it, I believe I can make it work for Mac as well. Please contact me if you want to help me with it. If you have questions - please feel free to ask. I would also be interested to know if the extension is used and what it is used for so that I can keep that in mind for future versions. So if use it - leave a post if you like.


Comment here...
Label Pages
i

JeromeLabel Pages

Jerome

This extension adds page numbers as labels to all pages. * You can chose a label prefix and whether existing page labels should be kept or replaced. * Appears under Extensions>Pages>Labels from page numbers... * Installation: Unzip to 'User Extensions' folder. History: 2024-01-29: first version.


Comment here...
Streaks
i

Andrew KurnStreaks

Andrew Kurn

Streaks is an extension to fill a rectangle with vertical lines to use as a texture. Quite a variety of textures is possible. Two examples: https://inkscape.org/en/~kurn/%E2%98%85streaksrm and https://inkscape.org/en/~kurn/%E2%98%85streaksbw


Comment here...
Page Preview Layer
i

sonejostudiosPage Preview Layer

sonejostudios

Inkscape extension to add a page preview layer with a specific color. For Inkscape 1.x as well as for Inkscape 0.92. Newest version will be updated there: https://github.com/sonejostudios/InkscapePreviewLayer


Comment here...
Page Background Layer
i

sonejostudiosPage Background Layer

sonejostudios

Inkscape extension to add a page background layer with a specific color. For Inkscape 1.x as well as for Inkscape 0.92. Newest version will be updated there: https://github.com/sonejostudios/InkscapeBackgroundLayer


Comment here...
Inkscape Exportxy Master
i

John CliffInkscape Exportxy Master

John Cliff

Inkscape extension for exporting the xy co-ords of the selected curve Original version posted on inkscape forum here: http://www.inkscapeforum.com/viewtopic.php?t=8826#p32088 was hacked together by me based on code provided by Jean Moreno on his blog. Was improved upon by Neon22 on the forum and later by Jens N. Lallensack. All contributors have agreed to release their contributions under the GPL.


Comment here...
Number subpaths
i

Ellen WasbøNumber subpaths

Ellen Wasbø

Visualize the order of subpaths within one path. Each start and end node will be marked with green/red dots and a text flag according to its order. Optionally the path ID could be visualized if working with more than one combined path. I use this for various projects where combining paths is needed and the order is of importance - embroidery designs, developing and testing extensions for cutting/plotting. This extension is based on the Inkscape included extension Visualize Path > Number Nodes by Aaron Spike from 2005. Number Subpaths can be found in the same menu when installed. Tested for v1.01, v1.02 and v1.1 on Windows 10.


Comment here...
Cleanup Styles
i

Mario VoigtCleanup Styles

Mario Voigt

This plugin is a bit similar to Blueprint Maker but has a more special use case and a lot of options! It is useful for adjusting the stroke width and opacity of large groups. Usually for good laser cutting the line width has to match a maximum width to be recognized as a hairline. Additionally often opacity issues cause that lines are missed by laser cutter. Docs: https://stadtfabrikanten.org/display/IFM/Cleanup+Styles


Comment here...
Horizontal Lines Effect (hlines)
i

Sue ZakarHorizontal Lines Effect (hlines)

Sue Zakar

Inkscape extension for "unwinding" paths For each selected path element consisting of straight segments, this extension creates an additional path element consisting of horizontal line segments which are the same size as the original line segments. Installing: Copy hlines.inx and hlines.py into your Inkscape user extensions directory. Where is that? Open Inkscape and go to the System section of the Preferences menu (Edit --> Preferences --> System). You will find a User extensions item containing the path to your user extensions directory. NOTE: As of this time, this extension works under Inkscape 1.0, but not the 1.1 release candidate. However, it will work on 1.1 (and above) by commenting out line 45 of hlines.py and uncommenting line 46. Update: 06/24/2021 new version handles transforms better


Comment here...
DiacrtiticCriticize
i

paulidealisteDiacrtiticCriticize

paulidealiste

DiacriticCriticize is a text exploration and transformation tool. It operates by changing the selected text letter-by-letter, either by adding random diacritic marks, by pulling random characters from not-so-common alphabets and text encodings, or both.


Comment here...
Object to and from String
i

Jabiertxo Arraiza CenozObject to and from String

Jabiertxo Arraiza Cenoz

With this two extensions, you can edit a single element with a text editor, without the need to open full svg -if exist- code, you also can run it trought command line. Added a checkbox later to use the selected item or put the ID --- Curated by Maren Hachmann on April 19 2022 1:19 AM


Comment here...
Batch Remove Symbols
i

RuaridhWBatch Remove Symbols

RuaridhW

This emulates Inkscape v1.3 gui remove_symbol action but also: -Removes symbols of selected clones on canvas OR ALL symbols and clones. -Also packaged is a Quick Remove Selected extn(.inx) using same py as main Batch inx. -For use in managing symbol library file and is intended to aid symbol library creation only. Other uses not tested. -"Symbols Batch Remove..." + "Quick Remove Selected Symbols" placed in Extensions>Symbols -As with any v1.3 extension can be allocated a keyboard shortcut. The premise for this extension is that the inbuilt symbol remove function only allows removal one symbol at a time; even using xml editor. (Batch Add and Sort extension also available)


Comment here...
Prover iLock attributes
i

hugo_at_proverProver iLock attributes

hugo_at_prover

This extension opens up a dialog that allows the user to set some Prover iLock specific attributes. The attributes decide how Prover iLock will display the svg file, in particular they are used to associate layers to "visualization features" that are used to dynamically change the drawn symbol based on the current state in the tool.


Comment here...