Reputation: 4408
I have been trying to run GWT program in chrome. When I paste the URL in address bar then its says "Development Mode requires the GWT Developer Plugin" so I have installed it in my PC and in the chrome extension section also shows this plugin added into chrome.
Check this image :
After restart the browser when I again paste the URL and tried to run it browser, browser shows again "Development Mode requires the GWT Developer Plugin".
That means browser needs again to install it but I have already completed this process.
Help me about this issue.
I used Windows - 7 with chrome - 46.
Upvotes: 2
Views: 1435
Reputation: 546
If you really need to use the plugin, it still works in IE11.
Else I would recommend to move to Super Dev Mode.
Upvotes: 1
Reputation: 1526
From GWT Website ,http://www.gwtproject.org/release-notes.html#Release_Notes_2_6_1
GWT Development Mode will no longer be available for Chrome sometime in 2014, so we improved alternate ways of debugging. There are improvements to Super Dev Mode, asserts, console logging, and error messages. This is because of newer chrome version.Use Super Dev Mode
Upvotes: 2
Reputation: 64541
From that page:
Note: the plugin no longer works on Linux because Chrome is dropping NPAPI support. It will also stop working on Windows 7 and Mac sometime in 2014. See http://www.chromium.org/developers/npapi-deprecation
So it's no wonder that it doesn't work; quite expected actually.
The real question is: why are you still using "legacy" dev mode rather than "super dev mode"? super dev mode is the default behavior in GWT 2.7, so I suppose you're using an ancient version of GWT ⇒ update to the latest when it's out (2.8-beta-1 is currently in smoke test, with 2.8 expected by the end of the year)
Upvotes: 2