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文件

下载Shader Editor扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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": [
        "*"
    ]
}