Shadertoy unofficial plugin.
Shadertoy.com unofficial plugin.
Τι είναι το Shadertoy unofficial plugin.;
Το Shadertoy unofficial plugin. είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Patu/AberrationCreations, και η κύρια λειτουργία του είναι "Shadertoy.com unofficial plugin.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Shadertoy unofficial plugin.
Λήψη αρχείων επέκτασης 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. |
ID | ohicbclhdmkhoabobgppffepcopomhgl |
Επίσημο URL | 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\/*" ] } ] } |