Shadertoy Custom Texures

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

Shadertoy Custom Texures क्या है?

Shadertoy Custom Texures ahills द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allows custom 2D textures, music and videos to temporarily be used in Shadertoy"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Shadertoy Custom Texures एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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": [
                ""
            ]
        }
    ]
}