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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Edit a pass of postprocessing shader on top of a live web page canvas element."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Post Processing Hack Editor एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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'"
}