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
-1
votes
0 answers

My first workspace add-on test deployment not installed

I an Google Apps Script for a very simple add-on function changeLinkTextToTitle() { var selection = DocumentApp.getActiveDocument().getSelection(); var elements = selection.getRangeElements(); for (var i = 0; i < elements.length;…
-1
votes
1 answer

How to make an App script to view edit history on Google sheets

My Google sheet data is too large so my view edit history doesnt work , so is there a way where i can make a script to view history on a certain page of that sheet I was trying to get a tool by which can see edit history of my sheet on a addon or…
-1
votes
1 answer

How to get access to Google script functions in Add on GCP standard

Kindly I wrote an Add-on and it was working smoothly without any errors, but after I have changed its GCP to standard I started to get errors on the lines that contains code of Google functions that the code has not permission, of course the…
-1
votes
1 answer

Workaround script for ARRAYFORMULA with INDIRECT

After wasting way too much time reading support forms, it seems like there’s no current way to use ARRAYFORMULA and INDIRECT together in Google Sheets. I’m currently trying to pull information from tabs based on an array of tab names. Without a…
-1
votes
2 answers

Custom function is not recognized until I click my add-on's dropdown

I am encountering a weird problem. Whenever I open a new file, the custom function of my Google Sheet add-on is not recognized (it shows #NAME?; Unknown function) In my add-on I have some code which creates add-on dropdown menu on open. From the…
-1
votes
1 answer

Google Apps Scripts: How to keep track of selected dates with CardService.newDatePicker?

Use selects a date from CardService.newDatePicker: const DatePickerFrom = CardService.newDatePicker() .setTitle("From Day") .setFieldName("range_start") .setValueInMsSinceEpoch(todayDate.getTime()) .setOnChangeAction( …
GN.
  • 8,672
  • 10
  • 61
  • 126
-1
votes
1 answer

Google Apps Script event object is undefined in my Gmail add-on

The problem is that my function receives an undefined event object. Can you tell me what's the problem? Here's the function: function onGmailMessageOpen(event) { const { accessToken, messageId } = event.commonEventObject; return…
-1
votes
1 answer

How to check if browser add-on contacts developer?

For desktop applications there is a firewall and determines which app can connect to the internet. Of course internet browsers and other internet apps are always unblocked, other way they are useless. Now we change point of view from OS->APPS and…
knm
  • 61
  • 6
-1
votes
1 answer

Test add-on by printing value in the browser console

I am trying to test my add-on using the old way by choosing Test as add-on.... Later on, I chose my Google Form and launch it to test the add-on. Prior to that, in the source code, I put console.logs to display the values. Can I print values using…
-1
votes
1 answer

My OnFormSubmit trigger needs to complete before add-on's OnFormSubmit trigger fires

I'm using the Form Publisher add-on with Google Forms in order to turn each Forms response into a Google Doc. It's a great add-on. I've written my own OnFormSubmit trigger (Head deployment; part of an app-script library) that renames the file(s) the…
-1
votes
1 answer

VSCode Extension: Get outline of function for custom outliner

I'm trying to create a custom outliner for VSCode (currently only for python), but I don't find measures to get the information I needed. I like to get information in this manner this: Array: [0] label: "foo" type: "Function" parameters:…
DarkTrick
  • 2,447
  • 1
  • 21
  • 39
-1
votes
1 answer

Requesting explanation about Certification Failure (Partner Request ID 2004100040003081)

REQUEST TO MICROSOFT CERTIFICATION TEAM - REF. PARTNER REQUEST TICKET ID 2004100040003081 Please explain why our submission received the failure notice 1100.1.4 shown below. What should we change in our submission to clear this hurdle? PLEASE…
-1
votes
2 answers

File.AppendAllText throws FileNotFoundException

I am working on Internet explorer add-on, I wrote a dll that attached to the browaswer, Ihave some event, inside of ot I am writing to some text file with File.AppendAllText, this throws FileNotFoundException, I am using AppendAllText in other…
spez
  • 409
  • 8
  • 21
-1
votes
1 answer

Where can I download odoo 11 addons for enterprise?

I am using Odoo.sh, Odoo 11.0+e (Enterprise Edition) and would like to download the addons. How can I do this? thankou
Noruwa
  • 93
  • 9
-1
votes
1 answer

Marketplace Google sheets Add-on: Set up monthly payment

We created a google sheets add-on and we are about to publish it publically. Can someone clear this up. I have been told 1) the monthly payment has to be created by us, the developer but 2) I also have heard that google changed payment structure…