@match rules are preferred over @include, because Chrome will show "This script runs on all domains" when trying to install a User script in Chrome. This syntax is also compatible with Greasemonkey 0.9.8+.
The following rules match all Stack Exchange 2.0 Q&A websites:
// @match http://stackoverflow.com/*
// @match http://meta.stackoverflow.com/*
// @match http://superuser.com/*
// @match http://meta.superuser.com/*
// @match http://serverfault.com/*
// @match http://meta.serverfault.com/*
// @match http://askubuntu.com/*
// @match http://meta.askubuntu.com/*
// @match http://*.stackexchange.com/*
// @match http://answers.onstartups.com/*
// @match http://meta.answers.onstartups.com/*
// @match http://stackapps.com/*
// @exclude http://data.stackexchange.com/*
// @exclude http://area51.stackexchange.com/*
Instead of adding more specific rules to disable the script for /reputation, http://api.*or http://chat.*, I recommend to use a simple check to filter these:
if ( !/^(api|chat)\./.test(location.host) && location.pathname.indexOf('/reputation') === -1) {
// Actual code
}
If you want to only target questions, use /questions/* at the end of each @match rule. In this case, there's no need to check for api, chat, reputation, data or area51, because /questions/ does not exist on these subdomains.