Shadertoy Custom Texures

Allows custom 2D textures, music and videos to temporarily be used in Shadertoy

O que é Shadertoy Custom Texures?

Shadertoy Custom Texures é uma extensão do Chrome desenvolvida por ahills, e sua principal característica é "Allows custom 2D textures, music and videos to temporarily be used in Shadertoy".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Shadertoy Custom Texures

Baixe arquivos de extensão Shadertoy Custom Texures no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        To load an image/audio/video file, drag and drop it either from your computer or a text/web link onto one of the texture preview slots.

Note that:
1. for textures it only works for 2D types
2. loading images from the web maybe blocked due to cross-origin HTTP requests not being allowed on their servers
3.for text/web links, only ones starting with https will work due to mixed content restrictions

Version 1.4
* removed unnecessary tab permissions

Version 1.3:
* added support for audio and videos files

Version 1.2:
* custom loaded textures now use the same ID as one from shadertoy.com, so you can save projects without issue
* the "changes you made may not be saved" popup will now not be triggered when loading a custom texture over an existing texture

Version 1.1:
* the texture filter and wrap settings are now read from the correct place                    

Informações Básicas da Extensão

Nome Shadertoy Custom Texures Shadertoy Custom Texures
ID jgeibpcndpjboeebilehgbpkopkgkjda
URL Oficial https://chromewebstore.google.com/detail/shadertoy-custom-texures/jgeibpcndpjboeebilehgbpkopkgkjda
Descrição Allows custom 2D textures, music and videos to temporarily be used in Shadertoy
Tamanho do Arquivo 4.38 KB
Contagem de Instalações 2,273
Versão Atual 1.4
Última Atualização 2023-05-12
Data de Publicação 2018-11-19
Classificação 4.54/5 Total de 13 Avaliações
Desenvolvedor ahills
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "1.4",
    "name": "Shadertoy Custom Texures",
    "description": "Allows custom 2D textures, music and videos to temporarily be used in Shadertoy",
    "host_permissions": [
        "*:\/\/*.shadertoy.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.shadertoy.com\/view\/*",
                "*:\/\/*.shadertoy.com\/new"
            ],
            "run_at": "document_end",
            "js": [
                "inject.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "myscript.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}