2008 3.06: Difference between revisions

From XPUB & Lens-Based wiki
Line 9: Line 9:
=== Examples ===
=== Examples ===


Images only: (Alexandre)
==== Images only: (Alexandre) ====
<source lang="css">
<source lang="css">
* {
* {
Line 20: Line 20:
</source>
</source>


 
==== Volapyk - browsing ====
 
 
=== Volapyk - browsing ===


''Changing the font to Webdings''
''Changing the font to Webdings''
Line 44: Line 41:
a { display: none ! important }
a { display: none ! important }
</source>
</source>


== Firefox Add-Ons ==
== Firefox Add-Ons ==

Revision as of 14:25, 22 May 2008

Add-on, plug-in, drop out [1]

Exploring some "not from scratch" Firefox browser modding.

Beyond Firefox Options

Examples

Images only: (Alexandre)

* {
	visibility: hidden;
}

img {
	visibility: visible;
}

Volapyk - browsing

Changing the font to Webdings

body {
	font-family : Webdings ! important;
}

Make links disappear (two ways)

hidden (but still taking up space in the layout)

a { visibility: hidden ! important }

removed from layout entirely

a { display: none ! important }

Firefox Add-Ons

PageRanked Links, Web to Image, Google Misspellings (Alexandre, Timo, Linda)

GreaseMonkey

GreaseMonkey is a Firefox add-on that allows custom JavaScripts to get run when viewing the pages on (particular) sites. Writing and testing a javascript with GreaseMonkey may be a convenient way to test out an idea before making a full-fledged standalone Firefox add-on.


examples