Questions tagged [add-on]

Add-on, a.k.a. Plug-in is a set of components that enhances the existing, or adds new capabilities to a software application.

A plug-in system is very common, because it lets other developers (and maybe users) make small plug-ins to add new features quite easily.

Add-ons are also a good customization tools, because they let users chose which of the features do they want, and which they don't. It also helps to keep the distributive small.

There are specific tags for certain platforms / applications, like

Usually it's better to use the more specific one.

1100 questions
2
votes
1 answer

Adding new class in framework via SDK-Addon: NoClassDefFoundError

I am trying to introduce a new API on the custom android 4.0.3 image. I have used the \device\sample project and created a new device sdk-addon based on it, I have added my own java add-on library code and the build is happens perfectly fine, when…
hack_tick
  • 161
  • 2
  • 10
2
votes
3 answers

Deploying SDK Addon component

Based on PlatformLibrary sample code in the SDK, I have created a small hello world library, the eventual goal of the library is to add capability for 3rd part developers to develop for my custom Android image. I am currently stuck at the point on…
hack_tick
  • 161
  • 2
  • 10
2
votes
1 answer

Android - Build an application that supports add-ons

On .NET, I can use "reflection" to load a DLL library at runtime. This allows me to build some add-on to my applications. On Android, there is any way to perform something like that? I´d like to make an add-on that, when installed, can be called…
regisxp
  • 956
  • 2
  • 10
  • 31
2
votes
1 answer

How to show a warning or bar from BHO in Internet Explorer?

I'd like to display a warning on some websites, similar to the warning IE shows when it blocks an ActiveX. Or a bar (not a tool bar) like Google Translate (from the Google Toolbar): I'm trying to do this in C# in a Browser Helper Object. Any code…
Julien
  • 5,729
  • 4
  • 37
  • 60
2
votes
4 answers

Does Visual Studio 2010 have backward compatibility with visual studio 2008's addins?

I have some really great addins in Visual Studio 2008 that I don't want to lose, but I've heard that Visual Studio 2010 will use MEF. Does it mean that I can say goodbye to my dancing banana ?
2
votes
1 answer

How to open popup on click of button in gmail addon using Card Services?

community, I'm developing a Gmail Add-on using Card Services and trying to implement a popup that displays when a specific event occurs within the add-on. I want to provide users with additional information or options in this popup. I've looked…
2
votes
0 answers

How to update Widgets or Card without rewriting the code in Gmail Addon using card Services

I am developing a Gmail addon by using the Card service which is provided by App Script. My requirement is that there are two dropdowns and when I select the first dropdown option the second dropdown options are updated. The second dropdown options…
2
votes
1 answer

How to implement File Upload Functionality using Card Services in Gmail Add-on

Stack Overflow community, I'm currently working on developing a Gmail add-on using Card Services and I'm facing some challenges regarding implementing a file upload functionality within the add-on. I would greatly appreciate your insights and…
2
votes
0 answers

WooCommerce Product Addons on auction product

I bought a theme using Dokan. We installed addons product with Dokan but the field is not displayed on the auction products that use the WooCommerce simple auctions module how can I activate the add-ons field of the products on the page of an…
2
votes
4 answers

How can I write my own plugin loader in java?

How can I implement a plugin facility in my java program? I am working with Java. My current project is something related to a general purpose electronics hardware, which have a custom command set. Now there is a general GUI through which one can…
Saneesh A T
  • 365
  • 1
  • 6
  • 12
2
votes
1 answer

Android - Add-on themes (images, sounds, etc) to APP

I am new to android development, probably an easy question to most, but can't seem to find the answer on the Internet. If I want to provide add-on packages consisting of new images and sounds to the app I built, what is the best solution for that.…
2
votes
0 answers

Cannot send message from background.js to content.js with manifest version 3

I am trying to learn how to make Chrome Extensions with the new manifest version 3. My goal is to send a message from background.js to content.js. I am using the following example that I found online: link to github. manifest.json { …
2
votes
1 answer

Google workspace Add-on with associated server: managing OAuth and permissions

I am working on a project I inherited that adds some functionality to Google Docs through a workspace add-on written in Google Script. The add-on makes API requests to a standalone web application. The web app is required to have access to some of…
caseyy
  • 55
  • 1
  • 5
2
votes
1 answer

Retrieve filled in Add-on data from booking/product

I'm writing a plugin to intercept the creation of bookings in wordpress. To have all the booking information I need to access the information filled in the addon fields (Woocommerce Product Add-Ons plugin) of a bookable product. The hooks I…
2
votes
1 answer

Is it possible to run a Google Sheets Add-on using an Apps Script?

I would like to set a time trigger on an add-on in google sheets. Considering it doesn't have one as part of it, I was going to write an Apps Script to run it and set a trigger to the script. Is this possible or is there any other way of doing it?