Post Processing Hack Editor

Edit a pass of postprocessing shader on top of a live web page canvas element.

Post Processing Hack Editor란 무엇입니까?

Post Processing Hack Editor은(는) samsy에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Edit a pass of postprocessing shader on top of a live web page canvas element."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Post Processing Hack Editor 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        A chrome extension that let you edit / hack  a pass of webgl post-processing shader on top of any canvas of any live web page.
Hit the button of the extension, and the editor will show up.
It grabs the first canvas of the DOM tree, click again so it goes to the next one etc.. 

BETA VERSION.

Accessible uniforms : 

float iGlobalTime : current time

vec2 mouse : ( - 1 to 1 ) position of the mouse on screen

sampler2D tInput : texture from the canvas

vec2 iResolution : resolution of the screen.

vec2 uv : UV coordinates                    

확장 프로그램 기본 정보

이름 Post Processing Hack Editor Post Processing Hack Editor
ID koemcchjodjlpjandcjjhmopkkjenlnc
공식 URL https://chrome.google.com/webstore/detail/post-processing-hack-edit/koemcchjodjlpjandcjjhmopkkjenlnc
설명 Edit a pass of postprocessing shader on top of a live web page canvas element.
파일 크기 147 KB
설치 횟수 251
현재 버전 0.12
최근 업데이트 2016-12-23
출시 날짜 2016-12-23
평점 2.00/5 총 3 개의 평점
개발자 samsy
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Post Processing Hack Editor",
    "short_name": "Post Processing Hack Editor",
    "version": "0.12",
    "manifest_version": 2,
    "description": "Edit a pass of postprocessing shader on top of a live web page canvas element.",
    "background": {
        "scripts": [
            "action.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "permissions": [
        "",
        "tabs",
        "activeTab"
    ],
    "offline_enabled": true,
    "web_accessible_resources": [
        "shaders\/main.vert",
        "shaders\/main.frag"
    ],
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'"
}