Copy URL+
=========

Hello.
Copy URL+ is a Mozilla & Firefox extension that extends the built-in
copy to clipboard functions to allow copying of the current document's
addess and its title and/or the current selection.

Copy URL+ adds a new menu entry to the context menu (right-click menu)
and same to the Edit menu.
By default, Copy URL+ comes with three entries:
- Copy URL + Title (copies the current document's title and its URL)
- Copy URL + Selection (copies the current selection and the URL of
	the current document)
- Copy URL + Title + Selection (copies the current document's title,
followed by the selected text and the URL of the document)

In addition, users can extend the menu with their OWN entries.

To do so, one must add two lines for each menu to the user.js file 
(the one in the profile folder):
These entries would look like:
user_pref('copyurlplus.menus.1.label', 'Copy URL + Title + Sel (HREF + Tooltip)');
user_pref('copyurlplus.menus.1.copy', '<a href="%URL%" title="%SEL%">%TITLE%</a>');

In the above example, the "1" in copyurlplus.menus.1.label/copy is
a number identifying the menu entry. You can add as many as you want,
but they do have to be in incremental order (you cannot have 1,2,4).
'.label' is the text on the menu and '.copy' is the format of the text to copy.
As you can see, you can specify the placement of the title (%TITLE%), 
the URL (%URL), and the selected text (%SEL%). You don't have to use 
all of them, just those that you need :)

Have fun and let me know if there's something that's missing.