Gridlock

Applies dynamic symmetry grids to all images and videos on a page

Что такое Gridlock?

Gridlock - это расширение Chrome, разработанное Hukacikanaka, и его основная функция - "Applies dynamic symmetry grids to all images and videos on a page".

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

screenshot
screenshot
screenshot

Скачать файл CRX расширения Gridlock

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

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

                        Applies dynamic symmetry grids to all images on a page! Great for studying composition on any image across the web!

To use it, simply click the extension icon to apply dynamic symmetry grids to all images and videos on a web page.
Click the icon in the bottom left corner of any grid to split the grid in half!

Works great on ArtStation, Pixiv, Pinterest, DeviantArt, Twitter, Google, YouTube, and more!
If there's ever a site that doesn't work, simply open the image in a new tab, or combine this extension with the Imagus extension!

But what's that you say? You've got an image on your computer that you want to study? Drag that image into Chrome and apply the grid that way!

Now get out there and go crazy with your new grid!                    

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

Название Gridlock Gridlock
ID ihiopdbmojdmojglpehiphmckhkbdekn
Официальный URL https://chromewebstore.google.com/detail/gridlock/ihiopdbmojdmojglpehiphmckhkbdekn
Описание Applies dynamic symmetry grids to all images and videos on a page
Размер файла 115 KB
Количество установок 44
Текущая Версия 1.0.1
Последнее Обновление 2020-07-25
Дата публикации 2020-07-01
Рейтинг 4.00/5 Всего 2 оценок
Разработчик Hukacikanaka
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://twitter.com/hukaplays/
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gridlock",
    "version": "1.0.1",
    "description": "Applies dynamic symmetry grids to all images and videos on a page",
    "permissions": [
        "activeTab"
    ],
    "web_accessible_resources": [
        "*.png",
        "*.PNG"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.5.1.min.js",
                "jquery.onscreen.min.js",
                "content.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "browser_action": {
        "default_icon": {
            "128": "images\/icon128.png"
        },
        "default_title": "Apply\/Remove Grids"
    },
    "icons": {
        "128": "images\/icon128.png"
    },
    "manifest_version": 2,
    "offline_enabled": true
}