add-on

Hybris addons install / uninstall / concept [closed]

一世执手 提交于 2019-11-29 03:52:39
问题 I have some common questions to the addon concept from Hybris: How is the best way to work with a default Hybris addon? There are some really nice addon features we want to use in our projects, but of course not exactly the way they are. So what is the best practice to modify them? Is it the way to copy the addon into the own project and then handle it as an own addon? (So put it under the 'custom' folder and modify it as needed) What exactly happens by installing an addon on an extension? By

Custom Functions with add-ons?

[亡魂溺海] 提交于 2019-11-29 02:29:25
I've been trying to create a Google Spreadsheet plugin from some existing Google App Scripts that I have, and one important part of this app script is Custom Functions. Though the documentation for the add-ons doesn't indicate that this is supported, the documentation for Custom Functions does indicate that you can. https://developers.google.com/apps-script/guides/sheets/functions Through testing, I have not once been able to get Custom Functions exposed through a add-on. Does anyone know the secret sauce to get this to work? Answer According to Eric Koleda in [Code.gs - date_add_and_subtract]

GoogleChrome extension that deletes browsing history with one click from an icon

老子叫甜甜 提交于 2019-11-28 01:39:59
问题 Im trying to make a google chrome extension that deletes all browsing history with one click on a icon located next to the url bar, this is my first extension on google chrome, i've made others for firefox, and i would like some guidance and ideas i think im quite close to my goal or at least in the right path, my current issue is the javascript document i know im missing code. Javascript [TEST.js] function TESTh() { chrome.history.deleteAll() } chrome.browserAction.onClicked.addListener

Firefox WebExtension settings page

狂风中的少年 提交于 2019-11-28 00:18:17
I have a settings page on my WebExtension, but I dont know how to acces the values of the settings with javascript. Current .xul-File: <?xml version="1.0"?> <!DOCTYPE mydialog SYSTEM "chrome://myaddon/locale/mydialog.dtd"> <vbox xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> <setting type="string" pref="extensions.check.email" title="email" desc="please insert your email here" /> </vbox> How do I acces the "email" value? Can I just write something like "getPreferences('email')"? Makyen Don't use XUL in a WebExtension add-on : If you are using XUL from within a

Create a node.js native extension on Windows

十年热恋 提交于 2019-11-27 17:32:35
I'm trying to access a particular native Windows API call from within a node.js application. I believe that the best way to do this is to create a native extension / addon to node that I can require in my node.js application and call from the JavaScript. Where can I find resources on how to actually compile this sort of executable? I can find instructions on how to write it, but all the build instructions seem to be for Linux. I'm fine with compiling through g++ on mingw, I don't need to use Visual Studio. Also, where do I find the header files that I need in order to compile the extension?

Custom Functions with add-ons?

故事扮演 提交于 2019-11-27 16:44:27
问题 I've been trying to create a Google Spreadsheet plugin from some existing Google App Scripts that I have, and one important part of this app script is Custom Functions. Though the documentation for the add-ons doesn't indicate that this is supported, the documentation for Custom Functions does indicate that you can. https://developers.google.com/apps-script/guides/sheets/functions Through testing, I have not once been able to get Custom Functions exposed through a add-on. Does anyone know the

Publish an add-on privately

扶醉桌前 提交于 2019-11-27 05:50:40
问题 I am trying to publish a test add-on with the option Private , because there is nothing new in this add-on, and would not be accepted by Google if I published it with Public . The add-on contains a sidebar, a custom menu and a custom function. It works well on its Google Sheet. In Chrome Web Store, I have added 2 gmails to Edit your tester accounts: under Your developer account . I also created a google group with these 2 gmails. By following this thread, I did Publish ==> Deploy as Sheets

Create a node.js native extension on Windows

a 夏天 提交于 2019-11-27 04:12:44
问题 I'm trying to access a particular native Windows API call from within a node.js application. I believe that the best way to do this is to create a native extension / addon to node that I can require in my node.js application and call from the JavaScript. Where can I find resources on how to actually compile this sort of executable? I can find instructions on how to write it, but all the build instructions seem to be for Linux. I'm fine with compiling through g++ on mingw, I don't need to use

Firefox WebExtension settings page

守給你的承諾、 提交于 2019-11-26 21:40:09
问题 I have a settings page on my WebExtension, but I dont know how to acces the values of the settings with javascript. Current .xul-File: <?xml version="1.0"?> <!DOCTYPE mydialog SYSTEM "chrome://myaddon/locale/mydialog.dtd"> <vbox xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> <setting type="string" pref="extensions.check.email" title="email" desc="please insert your email here" /> </vbox> How do I acces the "email" value? Can I just write something like "getPreferences(

How do I write a Firefox Addon? [closed]

拜拜、爱过 提交于 2019-11-26 16:53:55
What are some resources for getting started writing a Firefox Addon? Is there an API guide somewhere? Is there a getting started tutorial somewhere? Is there a developer discussion board somewhere? We tried to make http://developer.mozilla.org/en/Extensions answer all those questions. The first three links in the documentation section are about getting started (that includes Adam's link). The newsgroup and the irc channel in the Community section are the official discussion boards. Mozilla is very complex, so any kind of API guide would be overwhelming and hard to write. So your best bet is to