[[["容易理解","easyToUnderstand","thumb-up"],["確實解決了我的問題","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["缺少我需要的資訊","missingTheInformationINeed","thumb-down"],["過於複雜/步驟過多","tooComplicatedTooManySteps","thumb-down"],["過時","outOfDate","thumb-down"],["翻譯問題","translationIssue","thumb-down"],["示例/程式碼問題","samplesCodeIssue","thumb-down"],["其他","otherDown","thumb-down"]],["上次更新時間:2025-08-31 (世界標準時間)。"],[[["\u003cp\u003eThe Apps Script dashboard allows you to manage, monitor, and create Apps Script projects, including viewing details like OAuth scopes and execution logs.\u003c/p\u003e\n"],["\u003cp\u003eYou can view and search projects based on categories like starred projects, owned projects, shared projects, and all projects accessible to you.\u003c/p\u003e\n"],["\u003cp\u003eMonitor project health and usage through error rate, execution count, and user statistics, with the ability to star important projects for easier access.\u003c/p\u003e\n"],["\u003cp\u003eManage individual executions of Apps Script functions, including viewing execution logs, filtering by execution type, and terminating long-running executions.\u003c/p\u003e\n"],["\u003cp\u003eControl access to your script projects through the Apps Script API settings, enabling or disabling third-party application interaction.\u003c/p\u003e\n"]]],[],null,["# The Apps Script Dashboard\n\nThe [Apps Script dashboard](https://script.google.com/) lets you manage and\nmonitor your Apps Script projects. You can use the dashboard to do any of\nthe following:\n\n- View and search for your existing Apps Script projects, including [bound](/apps-script/guides/bound) scripts attached to Google Workspace documents.\n- Create new projects.\n- View details about your projects, such as the [OAuth scopes](/apps-script/concepts/scopes) it uses.\n- Monitor the health and usage of your script projects.\n- View execution logs for your projects and others that run using your account's credentials.\n- Toggle on or off the [Apps Script API](/apps-script/api/concepts) to allow or prevent apps from using the API to interact with your script projects.\n\nView and search projects\n------------------------\n\nThe Apps Script dashboard lists all the script projects that you can view or\nedit. The left nav of the dashboard divides these projects into the following\ncategories:\n\n- **Starred Projects** . Projects that you are [monitoring](#monitor_projects).\n- **My Projects**. Projects for which you are an owner.\n- **All Projects**. Projects which you own or have view or edit permissions for.\n- **Shared with me**. Projects that you do not own but that have been shared with you.\n- **Trash**. Projects that you have removed from Google Drive.\n\nThe project lists show the project name, owner, and last modified date. The\nicons next to the project name indicate whether the project is a\n[standalone](/apps-script/guides/standalone)\nproject or a [bound](/apps-script/guides/bound) project.\n\nView project details\n--------------------\n\nEach project includes a view to see developer details about the project. To\nview the details about a project, click the row from the project list.\n\nThe project details view shows **Error rate** , **Executions** and **Users**\ndata and graphs about the project, as well as\n[OAuth scopes](/apps-script/concepts/scopes) requested of any end-user using\nthe project. The data metrics are defined as follows:\n\n- **Error rate**. The percent of executions that failed to run due to uncaught exceptions. It is calculated as failed executions divided by the total executions over the defined time period.\n- **Executions** . The number of times a project has been \"run\" or executed. See [Execution types](#execution_type) for more information about how a project can be run.\n- **Users**. The number of unique user (accounts) who ran the project one or more times over the specified time period. Anonymous users are not tracked and therefore are not reflected in the user count or graphs.\n\nEach deployment of your project appears as a tab on the **Project Details**\npage above the data and graphs; you can select the tab to\nsee the associated data for that deployment. Selecting **ALL** shows\naggregate data for all of the project's deployments and from executions\nresulting from developers running the project from within the Apps Script\ncode editor.\n| **Note:** Projects published as add-ons do not appear as deployed in the Apps Script dashboard.\n\nMonitor projects\n----------------\n\nYou might have access to significantly more Apps Script projects than you use or\nmanage on a regular basis. To bookmark projects for easy access, you can star them.\nStarring projects also lets you monitor aggregate usage and error rate statistics\nand graphs on those projects.\n\nTo star a project, on the right of a project row, click More\nmore_vert \\\u003e\n**Add star** . You can also star a project by clicking More\nmore_vert\nwhile [viewing project details](#view_project_details).\n\nIn the left nav, you can select **Starred Projects** to see the projects\nyou've bookmarked. Click the **Error rate** , **Executions** or **Users**\nscorecard at the top of the page to see the associated graphs for all your\nstarred projects over the last 7 days.\n\nYou can remove a star from a project by clicking More\nmore_vert in its project row and\nselecting **Remove star**.\n\nManage executions\n-----------------\n\nYou can use the Apps Script dashboard to view and manage individual executions\nof Apps Script project functions. You can find a full log of recent\nexecutions by selecting the **My Executions** item in the left nav.\n\nThe **My Executions** panel shows by default a log of all previous and currently\nrunning executions for projects for which you are an owner, editor or\nviewer. This list can also include function executions in projects that you\ndon't have access to if they run on your behalf (for example, add-ons that\nyou've installed and run). The execution list only shows the initial function\nthat is called to start the execution. It does not show every function that\nwas called during that execution.\n\nYou can control which type of execution is reported in the log using the\nfilters at the top of the view. Each row of the log represents a single\nexecution. The **Start Time** , **Duration** , and **Status** columns show the\ncorresponding information about that execution.\n\nThe **Function** column shows the name of the function that initiated\nthe execution. There is no name in this column if you don't have access to\nthe execution's corresponding script project but it ran on your behalf.\n\nThe **Type** column shows what initiated the execution.\nValues include:\n\n- **Add On**. The execution originated from an add-on.\n- **Execution API**. The execution originated from an invocation of the Apps Script API.\n- **Time Driven**. The execution was caused by a time event.\n- **Trigger**. The execution originated from a trigger source.\n- **Webapp**. The execution originated from a deployed web app.\n- **Editor**. The execution originated from the Apps Script editor.\n\n### Terminate executions\n\nLong running executions that are currently in-progress are indicated by a\n**Status** of \"Running\". To stop these executions, on the right of the project\nrow, click More more_vert \\\u003e **Terminate**.\n\nSettings\n--------\n\nYou can adjust your dashboard settings by selecting **Settings** in the\nleft nav.\n\nIn the **Settings** panel is a toggle for\nthe [Apps Script API](/apps-script/api/concepts). This lets you grant the API\n[access to your script projects](/apps-script/api/how-tos/enable#granting_access_to_script_projects).\n\nTo access this toggle click the **Google Apps Script API**\nlabel in the **Settings** panel. This opens a new panel with warning text and\na toggle switch. Access to your script projects is toggled off by default\nas a security precaution. Once you grant access, any third-party application\nyou authorize can use the API to modify your scripts and deployments. You can\nrevoke this access in the **Settings** panel at any time.\n\nFind more information in the\n[Apps Script API access guide](/apps-script/api/how-tos/enable#granting_access_to_script_projects)."]]