Shader Editor

Live editing shaders in the browser.

Co to jest Shader Editor?

Shader Editor to rozszerzenie Chrome opracowane przez https://www.clicktorelease.com, a jego główną funkcją jest „Live editing shaders in the browser.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Shader Editor

Pobierz pliki rozszerzeń Shader Editor w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        A Chrome DevTools extension to help you edit shaders live in the browser.
Very much based on Firefox DevTools Shader Editor.

Includes live edit of GLSL shaders: vertex and fragment shaders.
Syntax highlighting and error reporting.
Fullscreen editor mode.
Autoformat and GLSL optimisation option.
Shader colouring on hover
Shader naming support
Texture monitoring and editing                    

Podstawowe informacje o rozszerzeniu

Nazwa Shader Editor Shader Editor
ID ggeaidddejpbakgafapihjbgdlbbbpob
Oficjalny URL https://chromewebstore.google.com/detail/shader-editor/ggeaidddejpbakgafapihjbgdlbbbpob
Opis Live editing shaders in the browser.
Rozmiar pliku 824 KB
Liczba instalacji 6,282
Aktualna Wersja 1.0.17
Ostatnia Aktualizacja 2016-04-06
Data Publikacji 2016-04-06
Ocena 4.59/5 Łącznie 22 Oceny
Deweloper https://www.clicktorelease.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/spite/ShaderEditorExtension
Adres URL Strony Pomocy https://github.com/spite/ShaderEditorExtension/issues
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Shader Editor",
    "version": "1.0.17",
    "minimum_chrome_version": "10.0",
    "devtools_page": "devtools.html",
    "icons": {
        "128": "icon_128.png",
        "48": "icon_48.png",
        "16": "icon_16.png"
    },
    "description": "Live editing shaders in the browser.",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "webNavigation",
        "storage"
    ],
    "manifest_version": 2,
    "content_security_policy": "default-src 'self' chrome-extension-resource: ; img-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-eval'; connect-src *; frame-src *;",
    "web_accessible_resources": [
        "*"
    ]
}