Artist Tools for Gartic Phone

Enhance the gartic phone experience with additional colors

Cos'è Artist Tools for Gartic Phone?

Artist Tools for Gartic Phone è un'estensione di Chrome sviluppata da SillyV, e la sua funzione principale è "Enhance the gartic phone experience with additional colors".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Artist Tools for Gartic Phone

Scarica i file di estensione Artist Tools for Gartic Phone in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        This extension provides additional tools that supplememnt the existing tools of gartic phone. 

==========================

Features:

Extended color pallete

Color history pallete (all colors that were manually picked with the color picker will be added here,  right click to remove)

Canvas watermark is hidden while drawing.

Editable Keybindings.

Accessible eye dropper tool 

Sketch Layer - 
move sketch layer above or below the canvas.
add additional data to sketch layer
transform, move, resize, flip, mirror the sketch layer
save and restore gartic drawings between sessions

Grid - 
add a grid above the canvas for assistance with percision                    

Informazioni di Base sull'Estensione

Nome Artist Tools for Gartic Phone Artist Tools for Gartic Phone
ID jimdddbdlngpncjdbfggmjieegcnjcbd
URL Ufficiale https://chromewebstore.google.com/detail/artist-tools-for-gartic-p/jimdddbdlngpncjdbfggmjieegcnjcbd
Descrizione Enhance the gartic phone experience with additional colors
Dimensione del File 40.6 KB
Conteggio Installazioni 3,330
Versione Corrente 1.2.1
Ultimo Aggiornamento 2023-10-13
Data di Pubblicazione 2022-10-13
Valutazione 5.00/5 Totale 6 Valutazioni
Sviluppatore SillyV
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Artist Tools for Gartic Phone",
    "version": "1.2.1",
    "description": "Enhance the gartic phone experience with additional colors",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "service_worker": "pages\/background.js"
    },
    "content_scripts": [
        {
            "css": [
                "pages\/colors.css",
                "components\/artist_settings.css"
            ],
            "js": [
                "components\/language.js",
                "components\/storage.js",
                "components\/paletteCollections.js",
                "components\/artist_settings.js",
                "components\/artist_settings_palettes.js",
                "components\/artist_settings_create_palette.js",
                "pages\/draw.js",
                "pages\/main.js"
            ],
            "matches": [
                "https:\/\/garticphone.com\/*",
                "https:\/\/beta.garticphone.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage"
    ]
}