A plug-in (or plugin) is a set of software components that adds specific abilities to a larger software application. If supported, plug-ins enable customizing the functionality of an application.

learn more… | top users | synonyms (3)

365
votes
23answers
179k views

Get query string values in JavaScript

Is there a pluginless way of retrieving querystring values via jQuery (or without)? If so, how, and if not what plugin do you recommend?
110
votes
10answers
122k views

Recommended Eclipse plugins to generate UML from Java code

Are there eclipse plugins that you can recommend for generating diagrams (UML, sequence) from Java code?
98
votes
77answers
13k views
90
votes
19answers
7k views

What are the “must have” jQuery plugins?

I'd like to know what are the most useful JQuery plugins. I'm particularly interested in those which are likely to be useful in general UI development, such as Tablesorter, rather than those which ...
78
votes
51answers
10k views

Do you have any recommended plugins for Eclipse?

Any great plugins out there, free or otherwise?
67
votes
9answers
34k views

What's the best edit-in-place plugin for jQuery?

I need an edit-in-place plugin for jQuery but there are quite some around. I've been testing jeditable (http://www.appelsiini.net/projects/jeditable) but it lacks some basic options (like hover ...
67
votes
9answers
6k views

Best way to allow plugins for a PHP application

I am starting a new web application in PHP and this time around I want to create something that people can extend by using a plugin interface. I am a very confident PHP developer however I have never ...
42
votes
12answers
996 views

Recommendations for a scripting or plugin language for highly math-dependent user coding?

I have started a bounty for this question ...because I really want the community's input. I can (and have) looked at several languages / frameworks and think 'well, this will probably ...
41
votes
12answers
31k views

What Subversion plugins for Visual Studio are there?

What Subversion plugins exist for Visual Studio?
40
votes
2answers
6k views

How do I list loaded plugins in Vim?

Does anybody know of a way to list up the "loaded plugins" in Vim? I know I should be keeping track of this kind of stuff myself but it would always be nice to be able to check the current status. ...
36
votes
6answers
11k views

Plug-in architecture for ASP.NET MVC

I've been spending some time looking at Phil Haack's article on Grouping Controllers very interesting stuff. At the moment I'm trying to figure out if it would be possible to use the same ideas to ...
35
votes
9answers
9k views

_Painless_ integration of Eclipse with Vim?

Has anyone managed to get Vim integrated into Eclipse painlessly? I just want to use Vim for the editor while retaining the general Eclipse interface. I have tried using Eclim plugin but the editor ...
34
votes
9answers
28k views

Eclipse JavaScript editor [closed]

I'm looking for opinions on the best JavaScript editor available as an Eclipse plugin. I've been using Spket, which is good, but I'm convinced there must be something better out there. Is there?
33
votes
2answers
642 views

Alternative implementations of python/setuptools entry points (extensions) in other languages/applications

While this question has a python backend, the question is not tied to python itself, but rather about extension mechanisms and how to register/lookup for plugins. In python, the concept of ...
33
votes
9answers
28k views

uninstall plugins in Eclipse 3.4.X

The GUI for managing plugins in Eclipse got a bit of an overhaul in version 3.4.0. This GUI is accessed via the "Software Updates..." option in the Help menu. This displays the following dialog: ...
33
votes
6answers
21k views

Best jQuery Status Message Plugin?

What is the best jQuery status message plugin? I like jGrowl and Purr, but jGrowl doesn't have the feature to remain sticky (not close automatially) and Purr doesn't seem to work right in IE 6. I ...
33
votes
5answers
19k views

Which Eclipse Subversion plugin should I use?

Subclipse, Subversive, or something else? There's a bit of debate around the topic, can we come to some conclusion here? EDIT: It's been a couple months now, and I ended up deciding the plugin ...
30
votes
21answers
2k views

Most useful jQuery plugins

Which are the most useful jQuery plugins you have used. List out one per answer(to rank the best plugins individually), and describe what it does as well. BlockUI - Can block certain elements (or ...
29
votes
10answers
8k views

Recommended Vim plugins for C coding?

What are the essential addons to help with editing C?
28
votes
5answers
10k views

Rails 3 authentication solutions

I poked around StackOverflow and Google, but couldn't find anyone who has put together a comparison of authentication gems or plugins for Rails (I'm looking for something for Rails 3). What ...
26
votes
6answers
44k views

jQuery “Please Waiting, Loading…” animation?

I would like to place a "please wait, loading" spinning circle animation on my site. I'm having trouble to find a plugin for it, so here I am asking a weird question :) Thank you for your help.
25
votes
7answers
5k views

Building a minimal plugin architecture in Python

I have an application, written in Python, which is used by a fairly technical audience (scientists). I'm looking for a good way to make the application extensible by the users, i.e. a ...
25
votes
5answers
17k views

Preferred ruby plugin for Eclipse?

RDT seems to be the preferred ruby plugin for adding ruby language support to Eclipse. However, I see that the main developer on that project has joined Aptana RadRails. Does this mean that project is ...
24
votes
3answers
2k views

Sandbox against malicious code in a Java application

In a simulation server environment where users are allowed to submit their own code to be run by the server, it would clearly be advantageous for any user-submitted code to be run in side a sandbox, ...
24
votes
6answers
8k views

Best way to build a Plugin system with Java

How would you implement a Plugin-system for your Java application? Is it possible to have an easy to use (for the developer) system which achieves the following: Users put their plugins into a ...
24
votes
9answers
7k views

How best to do Agile Development with Trac?

We use Trac as our bug tracking / development / wiki system and I was wondering if anyone has experience and uses some of the Trac Agile/Scrum plugins or functionalities? Anything you'd recommend? Or ...
23
votes
4answers
546 views

How can I redirect JNI console output to Eclipse Console view, when Eclipse plugin uses JNI?

I have an Eclipse plugin (A) which has a dependency on another plugin (B). Plugin B is simply a wrapper around a jar, which contains a native dll, and performs jni functionality. Given this setup, I ...
23
votes
9answers
6k views

Maven Release Plugin war stories

I have been given the task of exploring the maven-release-plugin before we try using it on our project. As of now, the releases are done manually on request. This process involves (skip this part if ...
22
votes
1answer
724 views

Qt Eclipse Integration and custom widget plugin

What is the correct procedure to compile a custom widget with the Eclipse Integration plugin, under Windows with MinGW? I tried the following steps, but I cannot see the widget in the Widget Bar. ...
22
votes
8answers
1k views

How To Create a Flexible Plug-In Architecture?

A repeating theme in my development work has been the use of or creation of an in-house plug-in architecture. I've seen it approached many ways - configuration files (XML, .conf, and so on), ...
22
votes
8answers
5k views

What are some recommended plugins for Trac?

In particular, I need a more full fledged version of Trac to support robust project management, and task tracking. I went through the plugins and literally found over 50 that looked promising. ...
22
votes
8answers
7k views

What's safe for a C++ plug-in system?

Plug-in systems in C++ are hard because the ABI is not properly defined, and each compiler (or version thereof) follows its own rules. However, COM on Windows shows that it's possible to create a ...
21
votes
5answers
4k views

Rockscroll or Metalscroll for Visual Studio 2010 (Minimap)

Has any one found a replacement for Rockscroll or Metalscroll for Visual Studio 2010? I miss it so much that I looked into making one my self but only have word highlighting working and a place ...
21
votes
8answers
7k views

JIRA Plugins: What do you use?

JIRA is a very extensible bug/task tracking tool. As such, newcomers feel lost as to what plugins they should install. Please share your thoughts what plugins (both free and paid) that you consider a ...
21
votes
4answers
7k views

Anyone found a PowerShell Syntax highlighting or IntelliSense plugin for Visual Studio?

Has anyone found a plugin for Visual Studio to allow for PowerShell syntax highlighting or IntelliSense? If not, does anyone have any idea why not? I keep hoping someone else with copious free time ...
21
votes
3answers
33k views

How do you develop Java Servlets using Eclipse?

I would like to program Java servlets using Eclipse and I plan on deploying them using Tomcat. I think I can build the projects using Ant which is bundled with Eclipse. I have the standard Eclipse ...
20
votes
6answers
6k views

Tips / Resources for building a Google Chrome plugin

After test driving Google Chrome for 30 minutes or so, I like it, even if it seems bare-bones at the moment. The obvious way to add a few things I can't live without would be through plugins. Does ...
18
votes
6answers
7k views

Implementing MEF with ASP.NET MVC?

I am trying to find out if anyone has any experience or ideas of using MEF (Managed Extensible Framework (Microsoft's new plugin framework) with ASP.NET MVC. I need to create a standard ASP.NET MVC, ...
18
votes
5answers
3k views

Custom syntax highlighting for VS 2008

I've been using John Lam's Vibrant Ink VS color scheme lately and wanted to tweak it so it highlights the method names for a class with a different color. Turns out there is no option in VS for that. ...
17
votes
3answers
4k views

Visual Studio 2010 Plug-in - Adding a context-menu to the Solution Explorer

I want to add a new option in Visual Studio 2010's solution explorer's context menu for a specific file type. So for example, right clicking on a *.cs file will show the existing context menu plus "my ...
17
votes
6answers
4k views

What is your favorite textmate plugin or bundle?

Textmate is a great editor with lots of plugins and bundles, hoping to find a few more that will make Textmate even more useful. I personally can't live without Ack in Project ...
17
votes
7answers
28k views

Where can I find a good jQuery drop shadow plugin?

Does anyone have a good recommendation for a drop shadow jQuery plugin? I've been working on a project that had every element on the page with a subtle drop shadow, we started using RUZEE to do the ...
16
votes
3answers
513 views

The “right” way to add python scripting to a non-python application

I'm currently in the process of adding the ability for users to extend the functionality of my desktop application (C++) using plugins scripted in python. The naive method is easy enough. Embed the ...
16
votes
8answers
3k views

Useful Vim plugins for web development and design (php, html, css, javascript)?

Right now I'm using surround.vim to enclose text in HTML tags, and a plugin that highlights text according to the hex value in the CSS file (e.g. #888 will have gray background in the CSS file). Are ...
16
votes
6answers
2k views

Is it possible to display Indentation guides in Vim?

I'm a longtime Vim user (3 or 4 years) who has recently started dealing with some deeply nested code. This code is indented with spaces, not tabs. I would like some clean and non-distracting ...
16
votes
1answer
24k views

Eclipse/MySQL integration plugins?

What plugins should I install in Eclipse to integrate MySQL into Eclipse so that I can, for example, create and modify tables inside Eclipse?
16
votes
5answers
5k views

Design Pattern for implementing plugins in your application?

What is the standard way for allowing and implementing a plugin system for your application? In my last application I made a simple interface for all plugins that they must implement. I then load ...
15
votes
3answers
255 views

Which scala compiler plugins are available?

I stumbled across the ScalaCL project and its compiler plugin that has an awesome loop optimizer. This made me wonder: Which compiler plugins are available for scala? Plugins need not be ...
15
votes
10answers
987 views

Most useful ActionScript packages / libraries

What are some useful plug-ins, packages or source-code for ActionScript? Please include ActionScript version, name, link and description.
15
votes
5answers
4k views

Plugins system for Delphi application - bpl vs dll?

I'm writing delphi app which should have capability of loading plugins. I'm using JvPluginManager as plugin system/manager ;) Now, in the new plugin wizard they say it's better to use .bpl type ...

1 2 3 4 5 110