add-on

Problems when using a Google spreadsheet add-on by multiple users [closed]

╄→尐↘猪︶ㄣ 提交于 2021-01-29 07:10:16
问题 Closed. This question needs debugging details. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 3 months ago . Improve this question In a self-developed add-on for Google Sheets, the functionality has been added that a sound file will be played from a JavaScript audio player in the side bar, depending on the selection in the table. For the code itself see here. When users have installed the add-on from the

Chrome extension - Can I share my extension as crx file for using someone?

旧街凉风 提交于 2021-01-28 11:01:45
问题 I publish my extension in google web store and install it successfully in my chrome. So I find extension's files in this directory: C:\Users\User_Name\AppData\Local\Google\Chrome\User Data\Default\Extensions. I use my extension for native messaging in chrome. How do I get .crx file for publish my extension for other people without internet connections? Or exactly like firefox *.xpi files. Also: If I pack extension's files in above DIR to zip and rename to crx file, and drop down to chrome

Would it be possible to crop image using google app script without using any third party api

人盡茶涼 提交于 2021-01-28 06:06:11
问题 I want to crop an image with Google App Script if an image outside the page frame, but as far as I checked in Google App Script documentation and I could not find a way to crop the image. pageElements.asImage().replace (imgBlob, true); it is not allowed to pass cropping dimensions as parameters in .replace() to crop a image. i know this can be achieved using a custom API , passing the image blob and crop area that will call cropping method on another server. But how it will be possible to

Update value in a spreadsheet sidebar when next row is selected in table

前提是你 提交于 2020-12-13 07:06:58
问题 To facilitate the annotation of audio files in a Google spreadsheet, I'd like to implement an audio player in the sidebar which automatically plays the audio file mentioned as URL in the row of a table. After listening and entering some date in this row, I'd like to move to the next row and do the same. Thus, the URL to the audio file should be updated whenever I select a new row and the whole process should be fast, too, in order to listen quickly to one sound file after the other. I've

Update value in a spreadsheet sidebar when next row is selected in table

老子叫甜甜 提交于 2020-12-13 07:06:24
问题 To facilitate the annotation of audio files in a Google spreadsheet, I'd like to implement an audio player in the sidebar which automatically plays the audio file mentioned as URL in the row of a table. After listening and entering some date in this row, I'd like to move to the next row and do the same. Thus, the URL to the audio file should be updated whenever I select a new row and the whole process should be fast, too, in order to listen quickly to one sound file after the other. I've