What IDE's are available for writing google chrome apps? - ide

I want to start writing a google chrome app but I'd like to use an IDE. Searching around I haven't come up with much. Most of my search results are IDEs that are chrome apps rather than for chrome apps. Does anyone have a suggestion? (I realize I don't /need/ an IDE but I want to know what my options are)

Happy to report that Google is now working on an open-source IDE specifically targeted at Chrome app development, codenamed Spark. See this announcement on thenextweb.com for example. You can find the code on GitHub here. The IDE is in a very early stage, but progressing quickly. There are no firm plans yet as to when an initial public release in Chrome Web Store will become available, but if you're interested, you can follow announcements on the GitHub page.
UPDATE (08/12/2014): Spark has been officially announced at Google I/O 2014 and released to the public as Chrome Dev Editor. Install it in your Chrome from Chrome Web Store.

To build a Chrome app, you just use the typical client-side web development stack--HTML, CSS, and JavaScript. This means you can use any IDE you would use for building a web front end like WebStorm, Eclipse, Sublime Text, etc.
You can also build Chrome apps with Google Dart, which means you could also use Dart Editor along with WebStorm and the Dart Plugin for Eclipse.

I started Xpom-Xpum! SDK project — a free and open-source IDE for Google Chrome extensions and apps.
If you interested, you can download it and it's C# code (MIT License) by link http://xpomxpum.codeplex.com/
But now I released it's Alpha version only...

Related

Where to find Quarkus run configuration in Intellij IDEA?

Some time ago I used to run Quarkus projects in Linux as any other proyect, this means by clicking "Edit Configurations" and selecting "Quarkus (Maven)" as you can see in this picture:
But now I´m using Windows and those menus have disapeared:
As an alternative currently I´m running my Quarkus projects from Maven tab, which isn´t a fashion way:
So at the begining I thought this was due to a bug in Quarkus Tools plugin that I created a new issue, however that plugin does not offer such feature. Could anybody give a hand on how to run Quarkus projects as any other project? Thanks in advance.
Run configurations are offered by this plugin: https://plugins.jetbrains.com/plugin/14242-quarkus-integration
Looks like it is discontinued though, marked as "deprecated" and it's not showing in the Plugin marketplace (within IntelliJ) for me, so I had to install it via the website.
AFAIK there are plans for the official JetBrains bundled plugin to support it (https://youtrack.jetbrains.com/issue/IDEA-228507), but it's not done yet.

Flash Application automation using Python and which tool

I have an application built on flash and that runs only on Internet Explorer. Sample screen of the application looks as shared. Also, I have shared object details.
I want to know, Can I choose Python language + Any tool to automate. I have browsed for tools like Selenium, PyCharm, Sikuli etc. But not able to figure out the exact tools along with Python and other settings.
You can try Ranorex. We used it to automate Flex application with C# as auto script.
But it's not free software.

Selenium-IDE, how to "Please do not include core selenium in your add-on, instead just extend from the original one." for Mozilla Addons Signing

I have forked & extended the Selenium project from Github just to make small changes to a few Selenium IDE files. I dont know much of this project.
I use the go command for building it, but know nothing of it.
go.exe ide
When asked for review for Mozilla Addons Signing process, it got rejected with this suggestion.
Please do not include core selenium in your add-on, instead just
extend from the original one.
Most probably they are asking to replace the libraries by the source-code of selenium core
Selenium Core Libraries:
Selenium Core Source:
Is this what Mozilla wants? If yes, how to do a build.

Eclipse plugin for play 2

I am a beginner with Play2 framework and Scala.
Is there any eclipse play 2 plugin available?
If yes, then please provide me the link for the same. I am used to Eclipse and have never used Scala before;hence in a confusion like how and where to start from. Looking at the Play2 Doc, sems like working in command prompt IDE which is very difficult (though I have tried yet)
Please let me know the eclipse plugin for Play2 or some other IDE helpful for this.
Regards,
There in no plugin as such for Eclipse.
Play! framework has nice set of tools for doing tasks such as following
creating new play project
running the project
deployment of the application
doing the continuous testing mode etc
Trust me, once you start using this, you gonna love it.
Beside you do not require any experience in Scala, as for Play framework you can use Java language, if you are comfortable with it (you can choose Java template while creating new Play project )
and also you can use IDE for syntax highlighting , code completion etc
I had a brief try of Play development using Eclipse and the Scala Plugin. I personally found it awkward and not terribly helpful. (The errors which the IDE reported were not always the same as the ones that the Play compiler reported, for example.)
I’ve had a lot more joy using the Intellij IDEA IDE, with its Scala plugin. As with Eclipse the current version of IDEA does not have specific support for Play Framework 2, but it does have specific support for Scala.
The next version of Intellij IDEA, v12, will have explicit support for Play Framework 2: http://www.jetbrains.com/idea/nextversion/index.html#Frameworks_Support (but only in the paid-for ‘Ultimate’ edition, not in the free ‘Community’ edition).

Finding a suitable version of Selenium (automated testing tool)

My project is compatible only with Internet Explorer. I want the test scripts to get generated automatically as it is done in Selenium IDE.Can i use selenium RC to test my application?
I could not use selenium IDE as it can be used only with Mozilla Firefox.
Can you suggest any other free tools for my project.
thanks in advance ...
I think if you dig around for earlier versions of selenium they are compatible with IE. We use it here for front-end automation via IE6 anyway