Most downloaded

Latest updates

1. Yoda Quote   2025-05-08

2. Rainbow Braces   2025-05-05

3. Upload Files Button   2025-05-02

4. Mozilla Rhino   2025-02-21

5. NetBeans serial version uid generator   2025-02-21


Found 14 plugins.

Plugin Categories Description

Mozilla Rhino

GroupId: org.mozilla
ArtifactId:rhino     383
Author:Matthias Bläsing
Jiří Kovalský
Matthias Bläsing
License:Mozilla Public License, Version 2.0

NB 11.3 - Verified  NB 11.2 - Verified

Rhino is an open-source implementation of JavaScript written entirely in Java. It is typically embedded into Java applications to provide scripting to end users.

Upload Files Button

GroupId: io.github.sbobrov85
ArtifactId:nb.uploadfilesbutton     141
Author:Matthias Bläsing
Matthias Bläsing
License:GNU GPL 2.0

NB 11.3 - Verified  NB 11.2 - Verified  NB 12.0 - Verified

test  Plugin Development   Adds a button to the panel and a menu item to switch the automatic upload of files for remote projects.

NB SpringBoot

GroupId: com.github.alexfalappa
ArtifactId:nb-springboot-plugin     21
Author:Jiří Kovalský
License:Apache License 2.0

NetBeans IDE plugin for developing with Spring Boot and the Spring framework

NB Figletize

GroupId: com.github.alexfalappa
ArtifactId:nb-figletize     20
Author:Jiří Kovalský
License:Apache License 2.0

NB 11.2 - Verified  NB 11.3 - Verified

test  test2   NetBeans IDE plugin to create text banners with FIGlet fonts

NetBeans CSV Editor

GroupId: org.bitbucket.draganbjedov
ArtifactId:netbeans-csv-editor     53
Author:Jiří Kovalský
License:GNU General Public License, version 3

test  Plugin Development   NetBeans Plugin for editing CSV files

GUI Popup & Inspect

GroupId: org.exbin.utils.guipopup
ArtifactId:guipopup-netbeans-plugin     19
Author:Jiří Kovalský
License:Apache License, Version 2.0

Plugin Development   Registers popup menu and inspect function for all regular components in IDE

External Code Formatters for NetBeans

GroupId: de.funfried.netbeans.plugins
ArtifactId:externalcodeformatter     37
Author:Jiří Kovalský
License:Eclipse Public License, Version 2.0

Plugin Development   Several external (e.g. Eclipse, Google, Spring, ...) code formatters integration for NetBeans

Twig Linter

GroupId: io.github.sbobrov85
ArtifactId:nb.twiglinter     42
Author:Jiří Kovalský
License:GNU GPL 2.0

Plugin Development   Integrate php twig linter (https://github.com/asm89/twig-lint) with NetBeans IDE.

jVi for NB Update Center

GroupId: com.raelity.jvi
ArtifactId:nb-uc     21
Author:Jiří Kovalský
License:Mozilla Public License Version 1.1

test   This plugin installs an update center so that jVi, vi/vim clone, can be installed. After installing this plugin, from the Plugins Manager
  1. select the "Available Plugins" tab.
    And then you may need to click "Check for Newest".
  2. From the Editing category select
    • "jVi for NetBeans"
    • "Editor Pin" (optional)
  3. install jVi

Color Codes Preview

GroupId: com.junichi11.netbeans.modules
ArtifactId:netbeans-color-codes-preview     16
Author:Matthias Bläsing
License:Apache License, Version 2.0

NB 11.2 - Verified

Show color codes preview per line in a sidebar area of an editor.

Disable / Enable

Check/Uncheck View > Show Colors

Supported color patterns

  • Hex color code (e.g. #ffffff, #000)
  • Css rgb/rgba values (e.g. rgb(0,0,0), rgba(255, 255, 255, 0.8))
  • Css hsl/hsla values (e.g. hsl(0, 100%, 50%), hsla(120, 100%, 50%, 0.5))
  • Named colors (e.g. red, blue)
  • Java Color class (e.g. Color.black, new Color(100, 100, 100))

Multiple colors

  • Show top two colors in a sidebar if there are multiple colors in a line.
  • If you want to check all colors, please click a specific rectangle. They will be shown as a list.

Change a color using the color chooser

  • Click a colored rectangle
  • Click a color value of a list
  • Select a new color in the color chooser
  • An old color value will be changed to new one with the same format

Generate color codes

You can generate color codes via a code generator(Alt + Ins).

  1. Run a code generator(Alt + Ins)
  2. Choose Color...
  3. Choose format you expect (e.g. new Color(r, g, b))
  4. Choose a color
  5. Click the OK button
  6. A color code is generated at the caret position

Options

Tools > Options > Miscellaneous > Color Codes Preview

Regex for enabled mime-types for Hex and CSS colors

Default value is `^text/(x-)?(css|less|sass|scss)$`. If you would like to disable/enable some mime-types, please change the default regex. This pattern is used when the plugin checks a mime-type.

Named Colors

This option is `false` by default. If you would like to show named colors, please check it.

NOTE

  • If you would like to show colors of `Color.decode()` e.g. `Color.decode(#000000)`, Please add `java` to "Regex for enabled mime-types" of Hex and CSS e.g. (`^text/(x-)?(css|less|sass|scss|java)$`)
  • Colors may be shown if they are not color codes. e.g. "#feature" contains #fea. This plugin recognizes it as a hex color code.
  • If you use the GTK Look and Feel, you cannot change an alpha value in the color chooser.
  • Hsl or hsla color values may not be changed correctly when you use the color chooser. (There may be 1% errors.)