Post Processing Hack Editor

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

¿Qué es Post Processing Hack Editor?

Post Processing Hack Editor es una extensión de Chrome desarrollada por samsy, y su función principal es "Edit a pass of postprocessing shader on top of a live web page canvas element.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Post Processing Hack Editor

Descarga archivos de extensión Post Processing Hack Editor en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Post Processing Hack Editor Post Processing Hack Editor
ID koemcchjodjlpjandcjjhmopkkjenlnc
URL Oficial https://chrome.google.com/webstore/detail/post-processing-hack-edit/koemcchjodjlpjandcjjhmopkkjenlnc
Descripción Edit a pass of postprocessing shader on top of a live web page canvas element.
Tamaño del Archivo 147 KB
Cantidad de Instalaciones 251
Versión Actual 0.12
Última Actualización 2016-12-23
Fecha de Publicación 2016-12-23
Calificación 2.00/5 Total de 3 Calificaciones
Desarrollador samsy
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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'"
}