AppsScript Color

Provides folders display and a dark color theme to the google apps script editor.

Was ist AppsScript Color?

AppsScript Color ist eine Chrome-Erweiterung, die von Jean-Rémi Delteil entwickelt wurde, und ihr Hauptmerkmal ist "Provides folders display and a dark color theme to the google apps script editor.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

AppsScript Color-Erweiterungs-CRX-Datei herunterladen

Laden Sie AppsScript Color-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        AppsScript Color provides other color themes for Apps Script developers.

These dark themes are more contrasted and comfy, allowing to code for hours !
Choose from the 'Colors' integrated menu one of the following themes :

3 dark themes are available in the IDE (themes only applies to the IDE, not to the full page)

Use the "Sun/Moon" icon to toggle the dark mode on and off, To select a different color theme, open the IDE action menu with [F1] (while focusing the IDE), then type either "theme", or one of the following:

-   Darcula
-   Monokai
-   BlackFoxConsole

For now the extension applies a color theme of your choice on Apps Scripts open on script.google.com
It works for standalone scripts and scripts linked to native Google documents.

AppsScriptColor also add a structured Folder view for a tidier file list !
To add folders, rename your files to include the path in their name:
myFolder/some_subfolder/myfileName

## ChangeLog

v1.5.1

-   [#39](https://github.com/JeanRemiDelteil/appsScriptColor/issues/39) Fix: issue with Chrome Update

v1.5.0

-   [#31](https://github.com/JeanRemiDelteil/appsScriptColor/issues/31) Updated the extension to support Chrome Extension Manifest V3
-   [Clean-up] Remove all Maestro related code
-   [#30](https://github.com/JeanRemiDelteil/appsScriptColor/issues/30) Fix: Navigating away from file does not remove light blue highlighting
-   [#22](https://github.com/JeanRemiDelteil/appsScriptColor/issues/22) Fix: Creating a New Project (script) with the Extension will crash Chrome
-   [#20](https://github.com/JeanRemiDelteil/appsScriptColor/issues/20) Fix: Duplicated entries in action menu
-   [#19](https://github.com/JeanRemiDelteil/appsScriptColor/issues/19) Mitigated: Color insertion fails when no function

v1.4.1

-   Fix https://github.com/JeanRemiDelteil/appsScriptColor/issues/21

v1.4.0

-   Full support of the new GAS online IDE (not all theme are available)

v1.1.1

-   Fix some colors changes

v1.1.0

-   Custom theme editor allows to create theme derivated from the 3 default themes\
    Find the Theme Editor in the color menu

v1.0.2

-   Folder are grouped above files
-   Folder color match their nesting level

v1.0.1

-   New Folder system: use the '/' character in your file names to display a structure Folder view This will allow great compatibility with the new CLASP command line
    tool (https://github.com/google/clasp)

v0.3.6

-   Fix adding or removing a folder work as expected again

v0.3.5

-   Fix Color not applied at page loading

v0.3.3

-   Fix GAS CSS update for font

v0.3.2

-   New scroll-bar color for Black fox console

v0.3.1

-   Smoother folder opening

v0.3.0

-   Added custom Folders to sort your files locally !
-   Updated color schemes to account for the folders

v0.2.3

-   Minor bug fixes : the extension only run script edit page

v0.2.0

-   New color theme : Darcula, with bigger font
-   Colors menu: Choose from the 2 existing themes or set to the default

v0.1.1

-   Added more suited color for HTML template tokens (  )                    

Grundlegende Informationen zur Erweiterung

Name AppsScript Color AppsScript Color
ID ciggahcpieccaejjdpkllokejakhkome
Offizielle URL https://chromewebstore.google.com/detail/appsscript-color/ciggahcpieccaejjdpkllokejakhkome
Beschreibung Provides folders display and a dark color theme to the google apps script editor.
Dateigröße 48.29 KB
Installationsanzahl 30,000
Aktuelle Version 1.5.1
Letztes Update 2023-03-20
Veröffentlichungsdatum 2020-01-22
Bewertung 4.66/5 Insgesamt 143 Bewertungen
Entwickler Jean-Rémi Delteil
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://github.com/JeanRemiDelteil/appsScriptColor/blob/master/privacy-policy.md
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "AppsScript Color",
    "description": "Provides folders display and a dark color theme to the google apps script editor.",
    "version": "1.5.1",
    "icons": {
        "16": "AppScriptColor-16.png",
        "48": "AppScriptColor-48.png",
        "128": "AppScriptColor-128.png"
    },
    "permissions": [
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/script.google.com\/*"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/script.google.com\/*"
            ],
            "js": [
                "injectColor.js"
            ],
            "run_at": "document_end"
        }
    ]
}