Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to create a Chrome extension that adds an option to the right click menu when the user right clicks a certain HTML element (for example a DIV with a known ID).

I would use this to add an option when the user right clicks a tweet on Twitter.com and that option would call a REST service.

Is this posible with a regultar Chrome extension?

share|improve this question

1 Answer

up vote 0 down vote accepted

Yes,

these are called Context Menus. You can find the docs for those here : http://code.google.com/chrome/extensions/contextMenus.html

Cheers, T.

share|improve this answer
Thank you! I'll check it out. – maxichiesa Jul 15 '12 at 1:36
I posted the same thing earlier, then deleted, because I realized he actually wants to actually add custom HTML to the context menu, and I don't think that's possible. – Jude Osborn 2 days ago

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.