User Tools

Site Tools


gnome:extensions:extension.js

This is an old revision of the document!


Gnome - Extensions - extension.js

extension.js is a mandatory file for every 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
const ExtensionUtils = imports.misc.extensionUtils;
const Me = ExtensionUtils.getCurrentExtension();
 
 
function init(meta) {
    log(`initializing ${meta.metadata.name}`);
}
 
 
function enable() {
    log(`enabling ${Me.metadata.name}`);
}
 
 
function disable() {
    log(`disabling ${Me.metadata.name}`);
}

Using extension object

extension.js
// This is a handy import we'll use to grab our extension's object
const ExtensionUtils = imports.misc.extensionUtils;
const Me = ExtensionUtils.getCurrentExtension();
 
 
class Extension {
    constructor() {
    }
 
    /**
     * This function is called when your extension is enabled, which could be
     * done in GNOME Extensions, when you log in or when the screen is unlocked.
     *
     * This is when you should setup any UI for your extension, change existing
     * widgets, connect signals or modify GNOME Shell's behavior.
     */
    enable() {
        log(`enabling ${Me.metadata.name}`);
    }
 
 
    /**
     * This function is called when your extension is uninstalled, disabled in
     * GNOME Extensions, when you log out or when the screen locks.
     *
     * Anything you created, modified or setup in enable() MUST be undone here.
     * Not doing so is the most common reason extensions are rejected in review!
     */
    disable() {
        log(`disabling ${Me.metadata.name}`);
    }
}
 
 
/**
 * This function is called once when your extension is loaded, not enabled. This
 * is a good time to setup translations or anything else you only do once.
 *
 * You MUST NOT make any changes to GNOME Shell, connect any signals or add any
 * MainLoop sources here.
 *
 * @param {ExtensionMeta} meta - An extension meta object, described below.
 * @returns {Object} an object with enable() and disable() methods
 */
function init(meta) {
    log(`initializing ${meta.metadata.name}`);
 
    return new Extension();
}

References

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