Go Back   Google Chrome Forums > Google Chrome > Chrome Plugins


http://chromeplugins.org/frwrdicon.jpg
Top Tip : Click here to Boost Your PC & Chrome Browsing Speed
Reply
 
Thread Tools Display Modes
  #1  
Old 08-07-2009, 10:06 PM
Junior Member
 
Join Date: Aug 2009
Posts: 6
Default [New Ext] Chrome.fm - Listen to Last.fm in Chrome

Extension: Chrome.fm

Developer: Lucleonhart

Latest Version: v0.3 added fixes from Nanobyte

Download Latest Version: http://www.lucleonhart.de/files/chromefm/chromefm.crx

Description: Hi there. This is my first extension. Just trying out what you can do with the unreleased plugin system. Well, this is the "Fire.fm" extension for Chrome, so you have a little toolstrip menu for listening last.fm music. You can Love / Ban songs and skip them as well. Have fun!

Features:
  • Listen to your personal Last.fm music collection.
  • Play / Stop / Skip controls
  • Love or ban songs!

Issues Fixed In New Version: See below at Nanobytes Post.

Browser Compatibility: all, i think.

Screenshot:

Last edited by Lucleonhart; 08-13-2009 at 03:58 PM..
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2  
Old 08-08-2009, 12:42 AM
sulasno's Avatar
Super Moderator
 
Join Date: Sep 2008
Location: Bangkok
Posts: 1,743
Default

welcome to ChromePlugins and thanks for sharing
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3  
Old 08-08-2009, 07:55 AM
Grasshopper's Avatar
Member
 
Join Date: Jul 2009
Location: Sofia, Bulgaria
Posts: 76
Default

Looks great! Is it playing my profile radio or some random radio from my neighbors/friends? It'll be nice if you can select which radio to play. A volume control will be nice too. I'm looking forward to the development of this extension.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4  
Old 08-08-2009, 07:58 AM
Junior Member
 
Join Date: Aug 2009
Posts: 6
Default

Hi all, and good to be here!
@Grasshopper: Well, currently it plays your own music collection (lastfm://user/$username/personal), but i will implement a station selector so you can listen to special artist radio, etc.
Volume control... have to see if that is possible with my player.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5  
Old 08-09-2009, 09:21 AM
Junior Member
 
Join Date: Aug 2009
Location: Germany
Posts: 22
Default

This extension is awsome!
(Its running with SRWare Iron 3.0.197.0)

Thank you!
__________________
I come from Germany, sorry for my bad english!
ChromePlus 1.2.6.0 (Build 4.0.222.3)

Last edited by Nanobyte; 08-09-2009 at 09:26 AM..
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6  
Old 08-09-2009, 11:11 AM
sulasno's Avatar
Super Moderator
 
Join Date: Sep 2008
Location: Bangkok
Posts: 1,743
Default

thanks for the update
I checked Iron periodically and couldn't find any update
found the update here

http://www.srware.net/forum/viewtopic.php?f=17&t=545
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7  
Old 08-09-2009, 10:38 PM
Junior Member
 
Join Date: Aug 2009
Posts: 1
Default SRWare Iron

can't seem to make it work on Iron...

Quote:
Originally Posted by Nanobyte View Post
This extension is awsome!
(Its running with SRWare Iron 3.0.197.0)

Thank you!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8  
Old 08-10-2009, 01:04 PM
Grasshopper's Avatar
Member
 
Join Date: Jul 2009
Location: Sofia, Bulgaria
Posts: 76
Default

Suggestion: when you click on the name of the song, that's sounding now to open it's page in last.fm in a new tab.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9  
Old 08-12-2009, 09:00 PM
Junior Member
 
Join Date: Aug 2009
Location: Germany
Posts: 22
Default

Can you change the extension so that automatically the next song is played, when you click the ban-button ?

And can you make the songtitle placeholder dynamicly?

- I Love this extension


//EDIT:
Skip banned song:
chromefm.js - add this after line 88:
Code:
	if(rating=='B')	nextSong();

Link "Artist - Title" to last.fm
chromefm.js - overwrite line 172:
Code:
						document.getElementById("song_name_strip").innerHTML = " | <a href=\"http://www.lastfm.de/music/" + interpret + "/\" target=\"blank\">" + interpret + "</a> - <a href=\"http://www.lastfm.de/music/" + interpret + "/_/" + titel + "/\" target=\"blank\">" + titel + "</a>"; // Songname *** Linked by Nanobyte
chromefm.html - Add before </head>:
Code:
<style type="text/css">
	#song_name_strip a {	color: #000;	text-decoration: none;	}
	#song_name_strip a:hover {	color: #000;	text-decoration: underline;	}
</style>

Fix Duration time: (before: 2:5, after: 02:05)
chromefm.js - add before function "savesettings":
Code:
function fillZeros(str, num){
	str = str+'';
	while(str.length<num){
		str = '0'+str;
		}
	return str;
	}
chromefm.js - replace function "calcMins":
Code:
function calcMins(seconds) {
	return (fillZeros(Math.floor(seconds / 60),2) + ":" + fillZeros((seconds % 60),2));
}
Sorry for this many changes! I hope it is ok.

Attached Images
 
__________________
I come from Germany, sorry for my bad english!
ChromePlus 1.2.6.0 (Build 4.0.222.3)

Last edited by Nanobyte; 08-13-2009 at 10:15 AM..
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #10  
Old 08-13-2009, 01:53 PM
Junior Member
 
Join Date: Aug 2009
Posts: 6
Default

Great enhancements! Thanks Nanobyte. Implemented all and uploaded to auto-update URL.

BTW: New Icon! ^^
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Powered by vBulletin® Version 3.7.4 PL1
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Google Chrome and Google™ is a Trademark of Google Inc
This site chromeplugins.org is not affiliated with or sponsored by Google Inc.
Thanks: Taree SEO Forum and John