summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorPeter Hofmann <scm@uninformativ.de>2014-06-14 17:45:34 +0200
committerPeter Hofmann <scm@uninformativ.de>2014-06-14 17:45:34 +0200
commit15e4cb8ad0bcc9bc11a4470d1ae3bf93d16c05ae (patch)
treef5d2440db0772cb3bf00992e7d5dd44a73d3fcf0 /README
parentff22429dfe3f311c1e66c82c5387eea0f7c324c5 (diff)
downloadlariza-15e4cb8ad0bcc9bc11a4470d1ae3bf93d16c05ae.tar.gz
Complete adblock
Diffstat (limited to 'README')
-rw-r--r--README26
1 files changed, 22 insertions, 4 deletions
diff --git a/README b/README
index 056fe1f..d6bff5d 100644
--- a/README
+++ b/README
@@ -1,9 +1,9 @@
zea - zeig's einfach an
=======================
-zea is a minimalistic web browser using Gtk2 and WebKit. "Zeig's einfach
-an" is german and translates roughly to "just show it" (the damn web
-page).
+zea is a minimalistic web browser using Gtk2, GLib and WebKit. "Zeig's
+einfach an" is german and translates roughly to "just show it" (the damn
+web page).
Features:
@@ -13,11 +13,11 @@ Features:
- Pluggability into suckless' tabbed
- vi-like scrolling (modified by CTRL)
- Searching the current page for a word
+ - Adblock
- Support for Flash and Java
Planned features:
- - Adblock
- Keyword based searching (opening "wi foo" will search wikipedia)
@@ -33,6 +33,18 @@ Each new tab will then show your bookmarks and is scaled by a factor of
0.8.
+Adblock
+=======
+
+zea has built-in adblock functionality. In each line of
+
+ ~/.config/zea/adblock.black
+
+you can store a regular expression. These expressions match
+case-insensitive and partially, i.e. ".*foo.*" is the same as ".*FOO.*"
+and you can use anchors like "^https?://...".
+
+
Literature
==========
@@ -40,3 +52,9 @@ API references:
- http://webkitgtk.org/reference/webkitgtk/stable/index.html
- https://developer.gnome.org/gtk2/stable/index.html
+ - https://developer.gnome.org/glib/stable/index.html
+
+Regular expressions supported by GRegex, you can use these in your
+adblock patterns:
+
+ - https://developer.gnome.org/glib/stable/glib-regex-syntax.html