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
官方網址 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": [
        "*"
    ]
}