-
Notifications
You must be signed in to change notification settings - Fork 757
[development] extensions
shuairan edited this page Nov 20, 2013
·
7 revisions
UUID: EXTENSION_NAME@cinnamon.org
using either your name or your domain name behind the @ sign.
Directory for extensions:
$HOME/.local/share/cinnamon/extension/UUID
metadata.json
- requiredProperties: ['uuid', 'name', 'description', 'cinnamon-version'],
- niceToHaveProperties: ['url'],
extension.js
- requiredFunctions: ['init', 'disable', 'enable'],
stylesheet.css
- will be automaticly loaded
settings-schema.json
- since Cinnamon 1.8
- https://github.com/linuxmint/Cinnamon/wiki/Applet,-Desklet-and-Extension-Settings
{
"cinnamon-version": [
"1.8",
"1.9",
"2.0"
],
"uuid": "EXTENSION_NAME@cinnamon.org",
"name": "EXTENSION_NAME",
"description": "Aweseome Extension",
"url" : "https://this-is-where-you-put-your-HP-or-github-or-whatever.url"
}