Shader Editor

Live editing shaders in the browser.

Shader Editor란 무엇입니까?

Shader Editor은(는) https://www.clicktorelease.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Live editing shaders in the browser."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Shader Editor 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Shader Editor Shader Editor
ID ggeaidddejpbakgafapihjbgdlbbbpob
공식 URL https://chromewebstore.google.com/detail/shader-editor/ggeaidddejpbakgafapihjbgdlbbbpob
설명 Live editing shaders in the browser.
파일 크기 824 KB
설치 횟수 6,282
현재 버전 1.0.17
최근 업데이트 2016-04-06
출시 날짜 2016-04-06
평점 4.59/5 총 22 개의 평점
개발자 https://www.clicktorelease.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/spite/ShaderEditorExtension
도움말 페이지 URL https://github.com/spite/ShaderEditorExtension/issues
지원되는 언어 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": [
        "*"
    ]
}