knitr::opts_chunk$set( collapse = TRUE, comment = "#>", fig.path = "README-" )
RStudio addins let you execute a bit of R code or a Shiny app through the RStudio IDE, either via the Addins dropdown menu or with a keyboard shortcut. This package is an RStudio addin for managing other addins. To run these addins, you need the latest version of RStudio.
The package can be installed via devtools
## Need the latest version of DT as well devtools::install_github('rstudio/DT') devtools::install_github("csgillespie/addinmanager")
You can test the package at the command line with
addinmanager::addin_manager()
After installing the package, the Addins menu toolbar will be populated with a new addin called Addin Manager. When you lauch this addin, a DT table will be launched:

In the screenshot above, the highlighted addins, shinyjs and ggThemeAssit,
indicate that this addins have already installed.
When you click Done
Simple!
Just fork and alter raddins.md which is located in the inst/extdata directory. This file is a md file with three columns:
The initial list of addins was obtain from daattali repo.
dd = read.csv("inst/extdata/raddins.md", sep="|", header=TRUE, skip=14)[-1,] write.csv(dd, file="inst/extdata/raddins.csv", row.names=FALSE) knitr::kable(dd)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.