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 06-24-2009, 07:29 PM
Senior Member
 
Join Date: Apr 2009
Location: Qc, Canada
Posts: 495
Default ChromeGestures beta 0.1

Hey everyone ! Here is ChromeGestures beta 0.1 !

Features :
  • Execute Chrome commands using a simple gesture
  • Easily create your own gestures
  • Endless custom command possibilities by using Javascript

On the default config, you can use the following actions :

Create a new tab [DOWN, RIGHT]
Close current tab [DOWN, LEFT]
Back button [left]
Next button [right]

Feel free to customize those.

In order to customize the gestures and create your own, go to
...\Chrome\User Data\Default\Extensions\cigjdpglbacblgokjombkbbdfpkkedde\0.1

Open ChromeGestures.js with your favorite text editor
Follow the instructions there.


Download it here.

Please give me feedback !
Report any issues here.
Keep in mind that it's a beta.

Known Issues :
Chrome's window.close() does not seem to work all the time. For my next release, I'm going to work on a way to communicate with Chrome's API. It will provide a much more reliable way to open and close tabs as well as a whole lot of other things !

Enjoy !
__________________

ChromeGestures

Last edited by Kyrax; 06-24-2009 at 07:53 PM.. Reason: Fixed download link
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2  
Old 06-24-2009, 07:33 PM
Luc VN's Avatar
Senior Member
 
Join Date: Sep 2008
Location: Belgium - Europe
Posts: 667
Default

I have the following error:

Could not install extension from 'D:\My Documents\Downloads\Chrome Extensions\ChromeGestures.crx'. Signature verification failed
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3  
Old 06-24-2009, 07:48 PM
Senior Member
 
Join Date: Apr 2009
Location: Qc, Canada
Posts: 495
Default

Ok, I uploaded the wrong file, can you verify if things are working now ? Fixed the download link on the original post.

Thanks !

EDIT : Nvm.. there really seems to be something wrong. No idea what it could be. I'm trying to fix this right now. Thanks for your patience.

EDIT2 : Seems like the host I used for the file the first time somehow corrupted it. New host now. Everything should work fine now..
__________________

ChromeGestures

Last edited by Kyrax; 06-24-2009 at 07:54 PM..
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4  
Old 06-24-2009, 10:57 PM
Luc VN's Avatar
Senior Member
 
Join Date: Sep 2008
Location: Belgium - Europe
Posts: 667
Default

Working now, thanks... I have to play with the config file... Great job Kyrax!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5  
Old 06-24-2009, 11:25 PM
Senior Member
 
Join Date: Jun 2009
Location: Porto Alegre, Brazil
Posts: 109
Default

Thanks a lot for the initiative of making this!

Well, playing a little bit with it.

If I use it on Google, chrome's stat page (recently closed tabs, history, etc), blank tab... it usually works (sometimes, after playing back and forward, it stops working for me anywhere), but on forums usually not (in fact, here in this forum it never works for me - none of the 4)

The close tab never works for me (must be related to the window.close() as u said).

Need to test it more in order to give a better feedback, but thanks a lot.

edit: Just noticed something now: right click isnt working more for anything. I cant see the context menu when I press the right click on any page.

Last edited by NicholasPufal; 06-24-2009 at 11:58 PM..
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6  
Old 06-25-2009, 03:23 AM
Senior Member
 
Join Date: Apr 2009
Location: Qc, Canada
Posts: 495
Default

Thanks for the testing and feedback, really appreciated !

For the Right click not working on anything issue, I'll get that fixed for the next release.

The gestures work fine for me on the forums. I wonder what could be causing this.

I'll try to get some new features and bug fixes by next week.
__________________

ChromeGestures
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7  
Old 06-25-2009, 08:43 AM
Member
 
Join Date: May 2009
Posts: 83
Default

I played a little with it. It is a great beginning. As Marble mentioned on the script thread, the bug fix for windows close is this:
function closeTabAction() {
window.open('', '_self', ''); //bug fix
window.close();
}

For me it works.

For future releases I have some suggestions
- use gestures on all pages. If I make a gesture to open a tab in adress I will have about:blank. I would like to be able to close the tab by mouse gesture... no luck. For ip adresses (eg: http://100.100.100.100/xx/xx) gestures don't work either.
- gestures should not wait until page is fully loaded.
- mouse trails for gestures can be implemented by using javascripts ?

How can I add gestures to simulate key press ? Like Alt+F4 ?

Chrome should have been a mixture between Opera and Firefox. I should have Mouse Gestures, Sticky notes, Ad block, Email client allready intergrated (as in Opera) and the ability to use extensions (as Firefox). Chrome is fast, but it feels like primitive... at least for me.

Last edited by alinescoo; 06-25-2009 at 08:52 AM..
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8  
Old 06-25-2009, 11:59 AM
Senior Member
 
Join Date: Apr 2009
Location: Qc, Canada
Posts: 495
Default

You can't really compare Chrome to projects over 5 years old.
That's a lot in internet years.

Also, Opera has been a commercial project for a long time.

Thanks for the window.close() fix !

As for working on about:blank and IP addresses, if someone knows how to match these in the manifest, I'd like to know.

Next version will be running before the page is fully loaded. Thanks for the suggestion

You can add a trail via javascript. Actually, that's pretty much the only way to do it without going into NPAPI plugins. It's pretty simple.

Right now, you can't simulate key presses. Maybe Chrome API will support it one day.

Thanks for the feedback.
__________________

ChromeGestures
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9  
Old 06-25-2009, 12:57 PM
Member
 
Join Date: May 2009
Posts: 83
Default

One match that I found to be working is this one: "file:///*" . As stated here: Matches, we don't really have too many options.
Trail would be an awsome addition. Thank you for your hark work. Finally a mouse gesture extension is up. I've tested it with the latest beta 3.0.190.1 and it works great.

Last edited by alinescoo; 06-25-2009 at 01:13 PM..
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #10  
Old 06-25-2009, 02:06 PM
Senior Member
 
Join Date: Apr 2009
Location: Qc, Canada
Posts: 495
Default

I'll ask on the mailing list if we can get a match all option or something similar.

EDIT: I'd also like to know what you guys think of the syntax for creating custom gestures ?
I considered using something similar to an Enum for gestures
Code:
myGesture = [ChromeGestures.UP, ChromeGestures.DOWN]
But.. I think it didn't help clarity.
__________________

ChromeGestures

Last edited by Kyrax; 06-25-2009 at 02:11 PM..
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Thread Tools
Display Modes

Similar Threads
Thread Thread Starter Forum Replies Last Post
Chrome Officially Out of Beta Chrome Chrome Talk 1 12-16-2008 05:39 PM
Chrome To Come Out Of Beta Chrome Chrome Talk 0 12-10-2008 12:38 PM




Chrome Central - Chrome Talk - Chrome Tips and Tricks - Chrome Plugins - Chrome Themes - Chrome Tools - Bugs and Vulnerabilities - Chrome Tech - General Chat


All times are GMT. The time now is 12:31 PM.


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