Algo

This extension help its user do heuristics evaluation for websites.

Τι είναι το Algo;

Το Algo είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον zhangwenting111, και η κύρια λειτουργία του είναι "This extension help its user do heuristics evaluation for websites.".

Λήψη αρχείου CRX της επέκτασης Algo

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

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

                        We interact with webpage every day in a way we don't recognize. Our behavior is driven by the content, and without the content, seeing only the movement that we made through our cursor is both strange and interesting. If we record our cursor movement only, and remove the web content from the background, it seems that we are just making Brownian motion, which is totally random and meaningless. What happens if the same movement of our cursor made to a specfic webpage was applied to something different, for example a particle system? My project is an exploration about human computer interaction, trying to dig into the meaning of our daily activity on a computer, and raise a new angle to perceive our interaction behavior with the digital content.

In this project I used the time draw algorithm which we learned at week 04. Using a unlimited dynamic array to record every movement the cursor made and when when it is made while recording, meanwhile calculating the distance the cursor has traveled with a simple calculation algorithm. And replay that movement according to time when in play mode. I also used the xeno trail algorithm which we learned at week 01, to firstly make it more visually appealling, and secondly provide more detail about the move movement. Lastly I used the attraction and repulsion algorithm we learned at week 06 to make the particle system, visualize it with grid insteand of particle circles, to visualize the move moment in a overall view, providing information which can be more intuisively understood about how we interact with the digital content.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Algo Algo
ID anedbfpncgedkpnaknmdehcbcilckifg
Επίσημο URL https://chrome.google.com/webstore/detail/algo/anedbfpncgedkpnaknmdehcbcilckifg
Περιγραφή This extension help its user do heuristics evaluation for websites.
Μέγεθος Αρχείου 375 KB
Αριθμός Εγκαταστάσεων 28
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2014-08-24
Ημερομηνία Δημοσίευσης 2013-12-17
Προγραμματιστής zhangwenting111
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Algo",
    "description": "This extension help its user do heuristics evaluation for websites.",
    "version": "1.0",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "extension.css"
            ],
            "js": [
                "script\/jquery.min.js",
                "script\/three.min.js",
                "script\/queueline.js",
                "script\/content.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        ""
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    }
}