1

Google Apps Scripts projects could be standalone, bounded to Google apps (Docs, Sheets), Web Apps or Google Sites gadgets. How could I find all the projects owned by me from a single point?

The Class File, Class Document, Class Spreadsheet, Class Slide and Class Sites from Apps Script doesn't include a method to know if the corresponding container has a Script project bounded to them.

Only standalone Script projects are shown in Google Drive.

Update:

Nowadays (2018) it's possible to find all the Apps Script projects, bounded and standalone, owned by oneself on https://script.google.com and it's possible to access these projects programmatically through Apps Script API but I don't know how to use it to create a list of projects owned by me.

clasp has the command clasp list but it list only the 10 most recent projects.

Reference

Related Q&A

Rubén
  • 34,714
  • 9
  • 70
  • 166
  • 1
    I've filed a Feature Request that would extend the App Script API to support exactly such behavior: https://issuetracker.google.com/issues/117105106 – tehhowch Oct 02 '18 at 20:57

1 Answers1

3

There is not good way to find all script OWNED by you because as you pointed out searching drive will only return standalone scripts. You can find all scripts Authorized by you though and revoke permissions on them.

Under Drive settings: Manage Apps.

or

Also under you google Account Settings->Account permissions https://security.google.com/settings/security/permissions?pli=1

Spencer Easton
  • 5,642
  • 1
  • 16
  • 25
  • 1
    The 2nd link is the one you want – Zig Mandel Apr 14 '15 at 02:08
  • Manage Apps in Google Drive settings only third party apps connected from the Chrome Web Store with Google Drive. In Account Settings->Account permissions there is a list of the apps that are authorized to access the account information. This is more helpful as it include both third party apps and the account owned apps but I'm not sure if this list Google Sites gadgets. – Rubén Apr 14 '15 at 23:04
  • 1
    Ah yes. I often see my own scripts in manage apps as I usually integrate them with drive. – Spencer Easton Apr 14 '15 at 23:23