User Tools

Site Tools


gnome:extensions:extension.js

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
gnome:extensions:extension.js [2022/07/23 11:39] 194.32.120.95gnome:extensions:extension.js [2022/07/23 12:24] (current) 194.32.120.105
Line 5: Line 5:
   * It is the core of the extension and contains the function hooks **init()**, **enable()** and **disable()** used by GNOME Shell to load, enable and disable your extension.   * It is the core of the extension and contains the function hooks **init()**, **enable()** and **disable()** used by GNOME Shell to load, enable and disable your extension.
  
-  * The file can use top-level functions, or an extension object. 
-    * Use whichever pattern best suits. 
  
 ---- ----
  
-===== Using top-level functions =====+===== extension.js ===== 
 + 
 +The file can use top-level functions, or an extension object. 
 + 
 +  * Use whichever pattern best suits. 
 + 
 + 
 +==== Using top-level functions ====
  
 <file javascript extension.js> <file javascript extension.js>
Line 34: Line 39:
 ---- ----
  
-===== Using extension object =====+==== Using extension object ====
  
 <file javascript extension.js> <file javascript extension.js>
Line 87: Line 92:
 } }
 </file> </file>
 +
 +----
 +
 +<WRAP info>
 +**NOTE:**  The code in **extension.js** is executed in the same process as gnome-shell.
 +
 +  * You will have access to live code running in GNOME Shell, but fatal errors or mistakes will affect the stability of the desktop.
 +
 +  * It also means you will be using the [[https://gjs-docs.gnome.org/#q=clutter|Clutter]] and [[https://gjs-docs.gnome.org/st10/|St]] toolkits, although you may still use utility functions and classes from Gtk.
 +
 +</WRAP>
 +
 +
 +----
 +
 +
 +===== Extension Meta Object =====
 +
 +An object describing the extension and various properties is available for extensions to use.
 +
 +  * This is passed to the **init()** function when an extension is loaded and can be retrieved by calling **ExtensionUtils.getCurrentExtension()**.
 +
 +<code javascript>
 +/**
 + * @typedef ExtensionMeta
 + * @type {object}
 + * @property {object} metadata - the metadata.json file, parsed as JSON
 + * @property {string} uuid - the extension UUID
 + * @property {number} type - the extension type; `1` for system, `2` for user
 + * @property {Gio.File} dir - the extension directory
 + * @property {string} path - the extension directory path
 + * @property {string} error - an error message or an empty string if no error
 + * @property {boolean} hasPrefs - whether the extension has a preferences dialog
 + * @property {boolean} hasUpdate - whether the extension has a pending update
 + * @property {boolean} canChange - whether the extension can be enabled/disabled
 + * @property {string[]} sessionModes - a list of supported session modes
 + */
 +</code>
 +
 +<WRAP important>
 +**WARNING:**  Some properties may only be available in some versions of GNOME Shell.
 +
 +  * All properties should be considered read-only.
 +
 +</WRAP>
 +
  
 ---- ----
Line 94: Line 145:
 https://wiki.gnome.org/Attic/GnomeShell/Extensions/Writing https://wiki.gnome.org/Attic/GnomeShell/Extensions/Writing
  
 +https://gjs.guide/extensions/overview/anatomy.html#extension-js-required
gnome/extensions/extension.js.1658576356.txt.gz · Last modified: 2022/07/23 11:39 by 194.32.120.95

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki