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

Firefox addon requires additional refresh to work

I have started developing an addon which would work on package.json of a Github repo. On loading the addon, it requires an additional page refresh for the addon to take effect instead of applying the border as soon as the url is…
2
votes
2 answers

Testing the installation of an unpublished Apps Script add-on

I'm developing a container-bound Apps Script add-on. I need to demonstrate the installation process as part of the OAuth verification process. I can't publish my add-on without OAuth verification, and there doesn't seem to be any other way to…
Migwell
  • 18,631
  • 21
  • 91
  • 160
2
votes
1 answer

Write an addon for dolphin android browser

I been searching for a while to get any reference to wite a addon for dolphin browser. Couldnt find any. Can anyone just point to any relavent website for this. Thanks
anusuya
  • 653
  • 1
  • 9
  • 24
2
votes
2 answers

How to get the "body" and "subject" fields of a draft when extending compose UI?

We are developing a Gmail Addon in which we extend the compose UI. This extends the compose window in which you can compose your e-mail. We need the 'From', 'To', 'Subject' and 'Body' of the message that is being composed. The 'From' can be read…
2
votes
1 answer

Conditional formatting & Cell color count?

I'm using conditional formatting in my google sheet and provide background color on value-based. My goal is to apply a formula that will automatically count the number of cells that have the same background color. However, the issue is that since…
2
votes
1 answer

Weather, exchange rates and other feeds

I am building a real estates website, I want to include some details on the homepage about the current weather, temperature, humidity, etc. I may also want to include some exchange rates. It all should be current and up-to-date, I know there are…
Maen
  • 1,030
  • 7
  • 19
  • 33
2
votes
3 answers

How to check with Javascript if a Firefox 3 Add-on / Extension is installed

Actually this question is based on a Blog Entry, which discusses the topic for FF2. But how does this work with FireFox 3? I know that there must be a workaround, because recently I visited a site saying: "Please disable AdBlock+ before entering…
Federico Elles
  • 891
  • 3
  • 14
  • 24
2
votes
0 answers

Is it possible to develop an add-on for Google Calendar?

We would like to create a google Calendar add-on/plugin/extension that will let us push the event to our cloud hosted application when creating or editing an event in Google calendar. We have a cloud hosted application that our clients use. One of…
2
votes
1 answer

SAP Hybris Assisted Service Module (ASM) - can't generate component

I've installed and tested ASM on my localhost successfully (we use Hybris 1811). Then I wanted to transfer it on our dev server (actually it was only changes in localextensions.xml and regenerated extensionsinfo.xml), so in extensionsinfo.xml of my…
Stepan Tuhacek
  • 219
  • 5
  • 18
2
votes
1 answer

C++ add-on for NodeJS nested functions not being called

I am writing a c++ NodeJs native add-on using the v8 that implements a minimax tic-tac-toe AI. I have a problem where nested functions are not working. Here is my code: namespace Game { Move bestMove(...) { // implementation …
Luke
  • 565
  • 5
  • 19
2
votes
1 answer

browser.tabs.executescript() is not working in firefox

execting sript in popup.js window.browser.tabs.executeScript(tab.id, { file: 'page.js' }, function () { //some logic here }); extension is working normal in chrome firefox giving me an error non-structured-clonable data like…
raviramani
  • 522
  • 2
  • 14
2
votes
0 answers

There are too many writes to properties at this time. Please wait up to 12 hours for the changes to be processed

I am getting "There are too many writes to properties at this time. Please wait up to 12 hours for the changes to be processed." when try to read or write properties using PropertiesService class. Originally I thought the script hit daily quotes…
2
votes
3 answers

Prestashop slow back-office (initContent : 12000ms)

I'm running a Prestashop store for over 2 years now, since this morning the back-office is really slow. So I used the debug-mode and I can see that initContent is taking 12s to load... Nothing else seems wrong in the debug log. I didn't install new…
Pier
  • 61
  • 1
  • 8
2
votes
1 answer

Seedstack - MQTT Add-on problem adding user & pasword

I try to connect to MQTT server and I have some problems adding the password: The configuration file is: mqtt: clients: client-ptl-mqtt: serverUri: tcp://rdabeg01.inetpsa.com:1883 clientId: LOCAL_PTL_SIMUL_MQTT connection: …
Jose M
  • 21
  • 2
2
votes
1 answer

How to use hotkeys in manifest file to launch extension default popup?

Chrome extension noob here, I'm trying to write a manifest.json for an extension so that the extension's popup (hotbox.html) launches while hitting the Command+Shift+0 on my keyboard. I have the following code, however, it does nothing when I try to…