Skip to content

Commit

Permalink
*** empty log message ***
Browse files Browse the repository at this point in the history
  • Loading branch information
aboodman committed Dec 6, 2004
1 parent 8083f08 commit 141315d
Show file tree
Hide file tree
Showing 12 changed files with 95 additions and 391 deletions.
Binary file modified downloads/greasemonkey.xpi
Binary file not shown.
File renamed without changes.
11 changes: 11 additions & 0 deletions downloads/ununderline.user.js
@@ -0,0 +1,11 @@
// ==UserScript==
// @description Converts underlined text to italics, making it more distinguishable from a hyperlink.
// ==/UserScript==

(function () {
var ss = document.createElement("style");
var t = document.createTextNode("u { text-decoration:none!important; font-style:italic!important; }");
var root = (document.getElementsByTagName("head")[0] || document.getElementsByTagName("body")[0]);
ss.appendChild(t);
root.appendChild(ss);
})();
373 changes: 0 additions & 373 deletions src/content/greasemonkey.js

This file was deleted.

4 changes: 2 additions & 2 deletions src/content/test.html
Expand Up @@ -4,8 +4,8 @@
<p>This is a test page. Use the links below to install the two test user scripts. <p>This is a test page. Use the links below to install the two test user scripts.


<p> <p>
<a href="ununderline.user.js">un-underline</a><br> <a href="http://downloads.mozdev.org/greasemonkey/ununderline.user.js">un-underline</a><br>
<a href="linkify.user.js">linkify</a><br> <a href="http://downloads.mozdev.org/greasemonkey/linkify.user.js">linkify</a><br>


<p>Watch, astounded, as the text below changes before your eyes. <p>Watch, astounded, as the text below changes before your eyes.


Expand Down

0 comments on commit 141315d

Please sign in to comment.