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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον samsy, και η κύρια λειτουργία του είναι "Edit a pass of postprocessing shader on top of a live web page canvas element.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Post Processing Hack Editor

Λήψη αρχείων επέκτασης Post Processing Hack Editor σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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'"
}