Shadertoy Custom Texures

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

Shadertoy Custom Texures란 무엇입니까?

Shadertoy Custom Texures은(는) ahills에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows custom 2D textures, music and videos to temporarily be used in Shadertoy"입니다.

확장 프로그램 스크린샷

screenshot

Shadertoy Custom Texures 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Shadertoy Custom Texures Shadertoy Custom Texures
ID jgeibpcndpjboeebilehgbpkopkgkjda
공식 URL https://chromewebstore.google.com/detail/shadertoy-custom-texures/jgeibpcndpjboeebilehgbpkopkgkjda
설명 Allows custom 2D textures, music and videos to temporarily be used in Shadertoy
파일 크기 4.38 KB
설치 횟수 2,273
현재 버전 1.4
최근 업데이트 2023-05-12
출시 날짜 2018-11-19
평점 4.54/5 총 13 개의 평점
개발자 ahills
이메일 [email protected]
결제 유형 free
지원되는 언어 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": [
                ""
            ]
        }
    ]
}