I want to disable the "Inspect popup" menu option in an extension I'm working on. How can I do that? I now it's possible because I have some extensions installed that have this option disabled (e.g. "Send to Kindle" by klip.me).
Asked
Active
Viewed 3,109 times
7
1 Answers
11
The "Inspect popup" option is only available when:
- Developer mode is activated (at
chrome://extensions/
). - The button has a popup associated (either via
default_popup
in the manifest file, or viachrome.browserAction.setPopup
).
When requirement 1 is not met, the "Inspect popup" option is invisible.
When requirement 2 is not met, the "Inspect popup" option is disabled (greyed out).
The example you're referring to ("Send to Kindle") has no popup, failing criteria 2, hence it has no "Inspect popup" option.

Rob W
- 341,306
- 83
- 791
- 678
-
That's all I need to know. Thank you Rob! – sica07 Oct 12 '13 at 11:14