Project

General

Profile

Feature #773

Updated by Daniel Curtis about 8 years ago

Emailing links of currently browsed URLs to various people using the default mail application should be a basic function for a web browser. Unfortunately, Chrome and it's open source counterpart Chromium do not possess this feature; however it is easy to add this basic functionality using a JavaScript bookmarklet.  

 * Open *Chrome* or *Chromium* 

 * Right-click the +Bookmarks+ bar and select *Add Page*. 
 *# In the *Name* text box add: 
 <pre> 
 Send Link 
 </pre> 
 *# In the *URL* URL text box add: 
 <pre> 
 javascript:location.href='mailto:?SUBJECT='+document.title+'&BODY='+escape(location.href); 
 </pre> 

 * Make sure that the +Bookmarks+ bar folder is selected and click *OK*. 

 * (OR) just drag this link to your +Bookmarks+ bar "Send Link":javascript:location.href='mailto:?SUBJECT='+document.title+'&BODY='+escape(location.href); 

 h2. Resources 

 * http://www.tech-recipes.com/rx/3024/google_chrome_add_send_link_button_to_bookmarks_bar/

Back