Shadertoy unofficial plugin.

Shadertoy.com unofficial plugin.

什麼是Shadertoy unofficial plugin.?

Shadertoy unofficial plugin.是由Patu/AberrationCreations開發的Chrome擴展程式,該擴展的主要功能是“Shadertoy.com unofficial plugin.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Shadertoy unofficial plugin.擴展crx文件

下載Shadertoy unofficial plugin.擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Features:

* List of recent shaders.
* Fork any shader.
* Save as new draft (for owned shaders).
* Export shaders (single JSON or ZIP archive with JSON and readme.txt).
* Display current canvas resolution.
* Create links in comments and description.

* Backup all user's shaders (JSON file).
* Adjustable slider for full control of 'iTime' uniform and audio/video inputs.
* FOUR sliders simulating mouse position with the same range. This can be used to tweaking variables.
* Big shader preview on shaders list on "My profile" page ( + optional alternative layout ). 
* Change resolution in windowed and fullscreen mode by pressing ALT and  1...9. keys.
  Resolution is divided by pressed key value, for example:
* Pause/Restart in fullscreen mode. FWD/RWD with arrow keys.
* Fullscreen edit mode.
* Render call multiplier

https://github.com/patuwwy/ShaderToy-Chrome-Plugin                    

擴展基本資訊

名稱 Shadertoy unofficial plugin. Shadertoy unofficial plugin.
ID ohicbclhdmkhoabobgppffepcopomhgl
官方網址 https://chromewebstore.google.com/detail/shadertoy-unofficial-plug/ohicbclhdmkhoabobgppffepcopomhgl
簡介 Shadertoy.com unofficial plugin.
檔案大小 157 KB
安裝次數 5,710
目前版本 0.14.260
更新時間 2024-02-22
上架時間 2020-06-06
評分 4.54/5 共 13 次評分
開發者 Patu/AberrationCreations
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/patuwwy/ShaderToy-Chrome-Plugin
說明頁面URL https://github.com/patuwwy/ShaderToy-Chrome-Plugin
隱私政策頁面URL https://github.com/patuwwy/ShaderToy-Chrome-Plugin/blob/master/PRIVACY-POLICY.md
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Shadertoy unofficial plugin.",
    "version": "0.14.260",
    "description": "Shadertoy.com unofficial plugin.",
    "homepage_url": "https:\/\/github.com\/patuwwy\/ShaderToy-Chrome-Plugin",
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        "https:\/\/www.shadertoy.com\/*"
    ],
    "icons": {
        "128": "assets\/icon_active_128.png"
    },
    "action": {
        "default_title": "ShaderToy plugin",
        "default_icon": "assets\/icon_active_128.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.shadertoy.com\/*"
            ],
            "exclude_matches": [
                "https:\/\/www.shadertoy.com\/signin"
            ],
            "js": [
                "contentscript.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "popup.js",
                "shadertoy-plugin.js",
                "shadertoy-plugin-common.js",
                "add-ons\/shadertoy-plugin-codemirror.js",
                "add-ons\/shadertoy-plugin-bbcode.js",
                "shadertoy-plugin-profile.js",
                "shadertoy-plugin-home.js",
                "scripts\/jszip-3.1.5.js",
                "scripts\/node-sanitize-filename.js"
            ],
            "matches": [
                "https:\/\/www.shadertoy.com\/*"
            ]
        }
    ]
}