I'm developing a Google Chrome extension that makes heavy use of the context menu, and I would like to make certain menu items available only on some domains.

Currently, I am using chrome.tabs.onUpdated and chrome.tabs.onSelectionChanged to check the tab url, and then I add or remove menu items based on a check against a domain list.

Is it possible to just disable the menu items, instead of removing them? I'm hoping for something like this:

chrome.contextMenus.update(id, {"disabled": true});
link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Unfortunately you cannot. That would be a neat feature I suppose. Feel free to submit a feature request http://crbug.com (Make sure you mention any valid use cases for it).

link|improve this answer
Thanks for the reply. I was just reading through your old thread here: groups.google.com/a/chromium.org/group/chromium-extensions/… – draeton Dec 26 '10 at 5:35
After some refactoring, I realized that the chrome.contextMenus.create documentUrlPatterns parameter suits my needs. – draeton Dec 26 '10 at 6:44
feedback

Your Answer

 
or
required, but never shown

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