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
Eメール [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": [
        "*"
    ]
}