Discuss Scratch
- Discussion Forums
- » Advanced Topics
- » FeedMe - Scratch Extension for RSS and Google searches
- powerpoint56
-
Scratcher
1000+ posts
FeedMe - Scratch Extension for RSS and Google searches
The unofficial FeedMe Scratch Extension adds functionality from the Google Feed API to Scratch projects. Projects can process RSS feeds, like the Discuss Scratch feed, news feeds, etc. Another cool feature is that you can get results from a (somewhat modified) Google search! This is happening in Scratch!
Get the Extension
Follow the instructions here.
Documentation
On Github
See it in action
Update
Version 3 is released! If you already have version 1-2, you will have to install again. Hopefully the next update will be automatic.
Please report glitches, and if you have a better name, let me know.
Thanks!
Get the Extension
Follow the instructions here.
Documentation
On Github
See it in action
Update
Version 3 is released! If you already have version 1-2, you will have to install again. Hopefully the next update will be automatic.
Please report glitches, and if you have a better name, let me know.
Thanks!Last edited by powerpoint56 (Feb. 11, 2015 00:22:03)
- powerpoint56
-
Scratcher
1000+ posts
FeedMe - Scratch Extension for RSS and Google searches
Demo of FeedMe
It would be cool to make a tool that tells you about new Scratch forum posts. But what if you could make it in Scratch?
Once you have the bookmark for the extension added, open a new Scratch project and click the bookmark. Go to More Blocks for the new blocks.
Now, if the information for the latest feed entry has a new author or a new title, we reset the info and play an alarm.
Of course, you can play around with this and add a lot more. Enjoy!
It would be cool to make a tool that tells you about new Scratch forum posts. But what if you could make it in Scratch?
Once you have the bookmark for the extension added, open a new Scratch project and click the bookmark. Go to More Blocks for the new blocks.
set [latest feed title v] to [0] // We'll use these variables to compare to new data.This loads the Scratch Forums Announcement feed, over and over again, forever. (don't cache url) is used so that your web browser doesn't save the old results from the last time you asked this.
set [latest feed author v] to [0]
forever
new feed from (don't cache url [http://scratch.mit.edu/discuss/feeds/forum/5/] :: extension) with (1) entries :: extension
wait (30) secs
end
Now, if the information for the latest feed entry has a new author or a new title, we reset the info and play an alarm.
set [latest feed title v] to [0] // We'll use these variables to compare to new data.
set [latest feed author v] to [0]
forever
new feed from (don't cache url [http://scratch.mit.edu/discuss/feeds/forum/5/] :: extension) with (1) entries :: extension
if ((([title v] of feed entry (1) :: extension) = (latest feed title)) or (([author v] of feed entry (1) :: extension) = (latest feed author)))
play sound [meow v] // some alarm sound
set [latest feed title v] to ([title v] of feed entry (1) :: extension)
set [latest feed author v] to ([author v] of feed entry (1) :: extension)
end
wait (30) secs
end
Of course, you can play around with this and add a lot more. Enjoy!
Last edited by powerpoint56 (Feb. 10, 2015 01:09:20)
- powerpoint56
-
Scratcher
1000+ posts
FeedMe - Scratch Extension for RSS and Google searches
Bump. There's now a demo for this above.
- powerpoint56
-
Scratcher
1000+ posts
FeedMe - Scratch Extension for RSS and Google searches
bump. Has anyone even used this?
- powerpoint56
-
Scratcher
1000+ posts
FeedMe - Scratch Extension for RSS and Google searches
Version 3 is released! Now, using the power of Google Feed API, you can basically make a feed based on a Google search. For instance:
There are endless possibilities with this! And you can narrow down your search with something like “site:scratch.mit.edu”, just like a normal Google search.
new feed from query [scratch] :: extensionThis will bring up topics relevant to Scratch from the web, like “Scratch - Imagine, Program, Share,” “Scratch Help,” “Scratch Baking,” etc. Then you can say:
([title v] of feed entry (1) :: extension)And it will give you the first title (“Scratch - Imagine, Program, Share”).
There are endless possibilities with this! And you can narrow down your search with something like “site:scratch.mit.edu”, just like a normal Google search.
Last edited by powerpoint56 (Feb. 11, 2015 00:37:45)
- MegaApuTurkUltra
-
Scratcher
1000+ posts
FeedMe - Scratch Extension for RSS and Google searches
Awesome extension! Can't wait to try it out
- powerpoint56
-
Scratcher
1000+ posts
FeedMe - Scratch Extension for RSS and Google searches
Awesome extension! Can't wait to try it outThanks!
bump
- PullJosh
-
Scratcher
1000+ posts
FeedMe - Scratch Extension for RSS and Google searches
Wow, that looks really cool!
This topic isn't getting the attention it deserves. :3
This topic isn't getting the attention it deserves. :3
- powerpoint56
-
Scratcher
1000+ posts
FeedMe - Scratch Extension for RSS and Google searches
Wow, that looks really cool!
This topic isn't getting the attention it deserves. :3
Thanks! (finally got a reply, lol)- powerpoint56
-
Scratcher
1000+ posts
FeedMe - Scratch Extension for RSS and Google searches
yeahbump
Last edited by powerpoint56 (Feb. 21, 2015 17:16:33)
- andrewjcole
-
Scratcher
500+ posts
FeedMe - Scratch Extension for RSS and Google searches
fistbump. 
Neat extension! Someone needs to make an extension shop, where you can browse through the many extensions.

Neat extension! Someone needs to make an extension shop, where you can browse through the many extensions.
- powerpoint56
-
Scratcher
1000+ posts
FeedMe - Scratch Extension for RSS and Google searches
fistbump.Yes, the extensions are flooding the ATs, like Scratch mods used to.
Neat extension! Someone needs to make an extension shop, where you can browse through the many extensions.

- MegaApuTurkUltra
-
Scratcher
1000+ posts
FeedMe - Scratch Extension for RSS and Google searches
MSU has an extensions list, but it's not getting updated.fistbump.Yes, the extensions are flooding the ATs, like Scratch mods used to.
Neat extension! Someone needs to make an extension shop, where you can browse through the many extensions.
Maybe I should update it
- edo31415
-
Scratcher
30 posts
FeedMe - Scratch Extension for RSS and Google searches
fistbump.
Neat extension! Someone needs to make an extension shop, where you can browse through the many extensions.
How about scratchextstore.weebly.com
- Znapi
-
Scratcher
500+ posts
FeedMe - Scratch Extension for RSS and Google searches
Nice site, but I think many people have begun to use this much simpler site since making extensions became public.Someone needs to make an extension shop, where you can browse through the many extensions.How about scratchextstore.weebly.com
Last edited by Znapi (June 2, 2015 03:05:48)
- Thepuzzlegame
-
Scratcher
1000+ posts
FeedMe - Scratch Extension for RSS and Google searches
Thanks for the mention!Nice site, but I think many people have begun to use this much simpler site since making extensions became public.Someone needs to make an extension shop, where you can browse through the many extensions.How about scratchextstore.weebly.com
There are still many things I'd like to revise and add to the site, but it's turning out pretty nice so far.Last edited by Thepuzzlegame (June 2, 2015 02:17:39)
- Future_Studios_
-
Scratcher
2 posts
FeedMe - Scratch Extension for RSS and Google searches
Cannot go to extension page 

- DifferentDance8
-
Scratcher
1000+ posts
FeedMe - Scratch Extension for RSS and Google searches
Cannot go to extension pageI'm going to presume that's because this extension was last released in 2015.
- Discussion Forums
- » Advanced Topics
-
» FeedMe - Scratch Extension for RSS and Google searches









