Gridlock

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

Was ist Gridlock?

Gridlock ist eine Chrome-Erweiterung, die von Hukacikanaka entwickelt wurde, und ihr Hauptmerkmal ist "Applies dynamic symmetry grids to all images and videos on a page".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Gridlock-Erweiterungs-CRX-Datei herunterladen

Laden Sie Gridlock-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

                        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!                    

Grundlegende Informationen zur Erweiterung

Name Gridlock Gridlock
ID ihiopdbmojdmojglpehiphmckhkbdekn
Offizielle URL https://chromewebstore.google.com/detail/gridlock/ihiopdbmojdmojglpehiphmckhkbdekn
Beschreibung Applies dynamic symmetry grids to all images and videos on a page
Dateigröße 115 KB
Installationsanzahl 44
Aktuelle Version 1.0.1
Letztes Update 2020-07-25
Veröffentlichungsdatum 2020-07-01
Bewertung 4.00/5 Insgesamt 2 Bewertungen
Entwickler Hukacikanaka
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://twitter.com/hukaplays/
Unterstützte Sprachen 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
}