Gary's Guide To Greasemonkey

Please find below some of the most popular articles I've written on Gary's Guide To Greasemonkey.

Table of Contents

Philly ETE 2013 – Day 1 Keynote Summary

Sample Greasemonkey Script in Chrome to process local files



Philly ETE 2013 – Day 1 Keynote Summary

Summary of talk by Claudia Perlich – Chief Scientist, m6d The Philly ETE Keynote address was a presentation on modelling advertising data by media 6 degrees, a company which uses data modelling techniques to improve advertisement conversion rates for large brands. The techniques presented showed that predictive models of purchasing behavior can be built in [...] Read More...

Sample Greasemonkey Script in Chrome to process local files

The following script will fire an alert box for local files: // ==UserScript== // @name Matcher // @descriptions Match Local Files // @version 1 // @match file://* // ==/UserScript== alert(1); Save as “match.user.js”. Drop into a Chrome tab and you will be prompted to install. These are done per user profile. Each time you re-install [...] Read More...