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
3
votes
3 answers

Accessing cookies, hopefully in JavaScript

I am working on a Firefox add-on that will allow users (all of whom are part of a specific group; this add-on is very limited in audience scope) to see the status of their authentication cookie from the status bar. We all have to authenticate to…
user56361
3
votes
1 answer

Android add-on library projects?

I have a mini piano app on android that I would like to extend with downloadable add-ons. I would for example have the soundset of a grandpiano as a seperate installable package. I see some apps that have add-ons (like the NIV Bible, that add…
Peterdk
  • 15,625
  • 20
  • 101
  • 140
3
votes
1 answer

Cannot read properties of undefined (reading 'withSuccessHandler')

I'm trying to call my code. gs functions on the click of a button. When I execute the function at that time it shows an error that Cannot read properties of undefined (reading 'withSuccessHandler'). I tested that when I'm executing the…
3
votes
1 answer

Couldn't find add-on hobby-dev for PostgreSQL database on Heroku

I'm trying to push my application to Heroku using Django, however when I run heroku addons:create heroku-postgresql:hobby-dev -a (appname) it gives me this error: Couldn't find either the add-on service or the add-on plan of…
Behdad Kh
  • 31
  • 4
3
votes
2 answers

What to use on Nodejs addons. Node.h or Napi.h

I have some pretty simple questions. What is the main difference between node.h and napi.h. What should I use for normal/personal use case. Why are there more "nodejs" headers. (node.h, napi.h, nan.h, node_api.h, ...) I have looked on Internet for…
user16579991
3
votes
3 answers

Set anonymous/dynamic functions to Menu

I would like to set dynamic functions for dynamic menus in Google sheets add-on. I am using the following code: function onOpen(e) { var menu = SpreadsheetApp.getUi().createAddonMenu(); for (var i = 0; i < array.length; i++) { const…
Jayakrishnan
  • 4,232
  • 2
  • 23
  • 35
3
votes
1 answer

Create grid (n,n) with selected page elements

Using Google application script, I am generating a grid with selected elements. In this example below - I gave input rows 2 and columns 3 to generate the order of the grid. My logic seems to be the production of wrong rows and columns. Issue :…
Bob Kris
  • 83
  • 7
3
votes
1 answer

How to remove empty lines in a google doc using the script editor (Google Docs add-ons)?

I am creating a Google Docs add-on, and one of the features I am trying to create is a feature that reduces the number of empty lines between two paragraphs. So, for instance, if I have 2 paragraphs with 5 empty/blank lines between them, I want the…
3
votes
1 answer

Attempt to call global 'this' (a nil value)

I can see that similar questions has been asked, however I'm not really that familiar with lua coding. I'm trying to fix an old World of Warcraft vanilla addon, to run in the Classic client. The code is as follows: function FHH_OnLoad() …
Dude85
  • 41
  • 1
  • 5
3
votes
1 answer

Include Python scripts with Plone Add-on

I have a Plone Add-on (created through Zope) that includes Javascript and page template files. Some of the Javascript functions need to call Python scripts (through AJAX calls) - how to I include these Python scripts in my add-on without going…
lightningmanic
  • 2,025
  • 5
  • 20
  • 41
3
votes
1 answer

error is caused when using "heroku addons:create sendgrid:starter"

when i use "heroku addons:create sendgrid:starter" , terminal display "An error was encountered when contacting the add-on partner to create sendgrid:starter: Error Provisioning User - User status - banned" what should i do to fix?
jun_nanika
  • 31
  • 2
3
votes
0 answers

Is including an iframe with a web extension considered remote code?

While submitting an extension to the Chrome Store this question is asked regarding remote code: ("All JS, Wasm or CSS that are not part of the administration package are remote code. This also includes references to external processes in tags,…
Daniel Doblado
  • 2,481
  • 1
  • 16
  • 24
3
votes
1 answer

Custom menus outside Addon menu

I am working on Google sheets Addon and want to create custom menu outside Addon menu something like below: Expected output Actual output I found that it only works for Container-bound Scripts but not for Addon.
Jayakrishnan
  • 4,232
  • 2
  • 23
  • 35
3
votes
1 answer

visual studio lines that been modified

I'm Using TFS and changing different lines of code in different Clases. Is there a tool that can color the lines that been modified in the current changeSet before I do checkin ? I know there's the Compate option but it's clumsy. I just want that…
Erez
  • 6,405
  • 14
  • 70
  • 124
3
votes
1 answer

Detecting PAGE_BREAK element in Google docs using app script

Problem statement: I have a google doc with N number of pages. Requirement is to convert each page as separate Google doc. Solution tried: Tried to find PAGE_BREAK element by parsing the body and when PAGE_BREAK is detected, create a Range, copy…