This site has been retired. For up to date information, see handbook.gnome.org or gitlab.gnome.org.


[Home] [TitleIndex] [WordIndex

epiphany-logo.png

GNOME Web

A simple, clean, beautiful view of the web

GNOME Web (referred to on this page by its codename, Epiphany) is the default web browser for the GNOME desktop environment.

Epiphany aims for integration with the GNOME desktop and easy of use. Epiphany only aims to make Epiphany usable within GNOME. Example: network proxy configuration is handled from the GNOME control center installed instead of Epiphany itself. See the Epiphany Manifesto

Epiphany uses WebKitGTK from the WebKit project to display web pages.

Contents

General

Another project took the "Epiphany" name!

The maintainers of the other project (a boulder-dash clone) agreed to share the name. On Debian systems, the GNOME epiphany binary is renamed to epiphany-browser to avoid name conflict.

What about Galeon?

Epiphany was forked from Galeon to be able to build a more usable browser for non-technical users. This involves removing confusing/technical features but more importantly redesign and add new features important for this part of the users. See the detailed history of Galeon, for more information on the Epiphany split.

Extensions and Plugins

Does Epiphany support extensions?

No. Epiphany did support extensions in the past, but they were fragile as they required access to browser internals and broke very often when new versions of Epiphany were released. To avoid these problems, we would love to support WebExtensions, the same extensions standard that is implemented by both Chrome and Firefox. Contributions would be highly welcome. Regardless, Epiphany aims to obviate the need for most extensions by having the functionality of most important extensions, such as adblocking, built-in and enabled by default.

Note that extensions are completely different from plugins.

Does Epiphany support plugins?

As of Epiphany 3.36, NPAPI plugins are no longer supported. Plugins (like Flash, QuickTime, and Java) are a legacy technology and no longer used except by extraordinarily obsolete websites. Unlike extensions, which would be nice to support, we have no intention of ever supporting any form of plugins again.

Mozilla and Firefox

What about Firefox as the default GNOME browser?

Epiphany's GNOME integration is better than Firefox's. This includes:

Many distributions use Firefox as the default browser. Why bother with Epiphany?

We are concerned that distributions favor Firefox over Epiphany. We strive to improve Epiphany as much as possible, so that distributors would use it as the default browser. We welcome your suggestions and especially your contributions.

Epiphany will never have the brand name recognition Firefox has.

Epiphany does not strive for brand name recognition. Epiphany strives to be low-key, staying out of people's way. Epiphany aims for unobtrusiveness, so that people don't notice when using it. Epiphany is also solely targeted at users of the GNOME desktop environment, so it is competing only for a small subset of Firefox's userbase.

Technical

How do I define a system-wide web application?

Let's say your application is called "Example" and it launches "https://www.example.com". You need to create a .desktop file as follows:

[Desktop Entry]
Version=1.0
Type=Application
Exec=epiphany --application-mode=example.desktop https://www.example.com
Icon=example
StartupNotify=true
StartupWMClass=example
Terminal=false
Name=Example application
Comment=A system-wide web application

Note that the exec line includes a reference to the web app URL and to the .desktop file itself. Store the desktop file and matching icons in the usual locations, for example:

You can also reference local HTML files as follows:

[Desktop Entry]
Name=Fedora Developer Portal
Comment=The developer workstation you've been waiting for.
GenericName=Documentation
Exec=epiphany --application-mode=fedora-developer-portal.desktop /usr/share/fedora-developer-portal/index.html
Icon=fedora-developer-portal
StartupWMClass=fedora-developer-portal
Type=Application
StartupNotify=true
MimeType=text/plain;

2024-10-23 10:58