Shadertoy unofficial plugin.
Shadertoy.com unofficial plugin.
Shadertoy unofficial plugin.란 무엇입니까?
Shadertoy unofficial plugin.은(는) Patu/AberrationCreations에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Shadertoy.com unofficial plugin."입니다.
확장 프로그램 스크린샷
Shadertoy unofficial plugin. 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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\/*" ] } ] } |