Home

Awesome

PluginsList

This Sketch plugin gives you exporting plugins informations as text.

Easy to share plugin informations that you use to your team.

Supported format

Install

How it works

  1. Open menu Plugins > Plugins List
  2. Select text format
  3. Choose Copy to pasteboard or Save to file...

Customizing template

You can provide your custom template. The plugin uses Mustache template engines. When you write your template file, run

  1. Open menu Plugins > Plugins List
  2. Click Export using custom template
  3. Select your custom template file.
  4. Choose Copy to pasteboard or Save to file...

Here is the mustache template spec links bellow.

Bultin templates are here as examples.

Available Values

KeyTypeDescription
appcastURLStringA URL to the plugin’s appcast file containing information about the available versions, including URLs to download specific versions. Sketch automatically checks this file for updates and notifies the user when there’s an update available.
authorStringProvides the name of the plugin author.
authorEmailStringSpecifies how to contact the plugin author by email. This is optional.
compatibleVersionStringDefines the minimum version of Sketch required to run the plugin. This string must be provided using semantic versioning.
enabledNumber(0/1)1 when the plugin is enabled
homepageURLStringSpecifies a website address where users can find more information or provide feedback for the plugin. This is optional.
identifierStringDefines a unique identifier for the plugin. This value is a string using reverse-domain syntax.
maximumCompatibleVersionStringDefines the maximum version of Sketch supported by the plugin. This string is optional and must be using semantic versioning if provided.
nameStringProvides a human-readable name for the plugin when displayed to the user, e.g. within the Plugins menu or the list of installed plugins in the Sketch preferences.
pluginDescriptionStringProvides a general description of what the plugin does.
suppliesDataNumber(0/1)Specifies if the plugin is a data supplier. If set to true a visual indicator is displayed with the plugin within the preference pane showing the list of all installed plugins.
urlStringFile URL where the plugin is located in your machine.
versionStringThe version of the plugin using semantic versioning.

See also Sketch Developer — Manifest

Credits