Post Processing Hack Editor

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

Wat is Post Processing Hack Editor?

Post Processing Hack Editor is een Chrome-extensie ontwikkeld door samsy, en de belangrijkste functie is "Edit a pass of postprocessing shader on top of a live web page canvas element.".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Post Processing Hack Editor

Download Post Processing Hack Editor-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Post Processing Hack Editor Post Processing Hack Editor
ID koemcchjodjlpjandcjjhmopkkjenlnc
Officiële URL https://chrome.google.com/webstore/detail/post-processing-hack-edit/koemcchjodjlpjandcjjhmopkkjenlnc
Beschrijving Edit a pass of postprocessing shader on top of a live web page canvas element.
Bestandsgrootte 147 KB
Aantal Installaties 251
Huidige Versie 0.12
Laatst Bijgewerkt 2016-12-23
Publicatiedatum 2016-12-23
Beoordeling 2.00/5 Totaal 3 Beoordelingen
Ontwikkelaar samsy
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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'"
}