/usr/share/help/C/system-admin-guide/extensions-enable.page is in gnome-user-docs 3.28.1-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 | <page xmlns="http://projectmallard.org/1.0/"
xmlns:its="http://www.w3.org/2005/11/its"
type="topic" style="task"
id="extensions-enable">
<info>
<link type="guide" xref="software#extension" />
<link type="seealso" xref="extensions-lockdown" />
<link type="seealso" xref="extensions" />
<revision pkgversion="3.12" date="2014-06-17" status="review"/>
<credit type="author copyright">
<name>Petr Kovar</name>
<email>pknbe@volny.cz</email>
<years>2014</years>
</credit>
<include href="legal.xml" xmlns="http://www.w3.org/2001/XInclude"/>
<desc>Enable GNOME Shell extensions for all users.</desc>
</info>
<title>Enable machine-wide extensions</title>
<p>To make extensions available to all users on the system, install them in
the <file>/usr/share/gnome-shell/extensions</file> directory. Note that
newly-installed machine-wide extensions are disabled by default. To enable
the extensions for all users, you need to set the
<code>org.gnome.shell.enabled-extensions</code> key.</p>
<steps>
<title>Setting the org.gnome.shell.enabled-extensions key</title>
<item>
<p>Create a <code>user</code> profile in
<file>/etc/dconf/profile/user</file>:</p>
<listing>
<code>
user-db:user
system-db:local
</code>
</listing>
</item>
<item>
<p>Create a <code>local</code> database for machine-wide settings in
<file>/etc/dconf/db/local.d/00-extensions</file>:</p>
<listing>
<code>
[org/gnome/shell]
# List all extensions that you want to have enabled for all users
enabled-extensions=['<input>myextension1@myname.example.com</input>', '<input>myextension2@myname.example.com</input>']
</code>
</listing>
<p>The <code>enabled-extensions</code> key specifies the enabled
extensions using the extensions’ uuid
(<code>myextension1@myname.example.com</code> and
<code>myextension2@myname.example.com</code>).</p>
</item>
<include href="dconf-snippets.xml"
xpointer="xpointer(/*/*[@xml:id='dconf-update'])"
xmlns="http://www.w3.org/2001/XInclude"/>
</steps>
</page>
|