Artist Tools for Gartic Phone

Enhance the gartic phone experience with additional colors

Что такое Artist Tools for Gartic Phone?

Artist Tools for Gartic Phone - это расширение Chrome, разработанное SillyV, и его основная функция - "Enhance the gartic phone experience with additional colors".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Artist Tools for Gartic Phone

Скачайте файлы расширений Artist Tools for Gartic Phone в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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                    

Основная информация о расширении

Название Artist Tools for Gartic Phone Artist Tools for Gartic Phone
ID jimdddbdlngpncjdbfggmjieegcnjcbd
Официальный URL https://chromewebstore.google.com/detail/artist-tools-for-gartic-p/jimdddbdlngpncjdbfggmjieegcnjcbd
Описание Enhance the gartic phone experience with additional colors
Размер файла 40.6 KB
Количество установок 3,330
Текущая Версия 1.2.1
Последнее Обновление 2023-10-13
Дата публикации 2022-10-13
Рейтинг 5.00/5 Всего 6 оценок
Разработчик SillyV
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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"
    ]
}