Specifing Domains

IEScripts uses wild cards to specify the domains in metadata. For example, one can implement the script to all the pages under a domain and subdomains:

// ==UserScript==
// @include http://example.com/*
// @include http://*.example.com/*
// ==/UserScript==

The wild card '*' cover any domains.

// ==UserScript==
// @include *
// ==/UserScript==

The format 'http://*' have a narrow range compared to '*', there might be 'https://' domains.

// ==UserScript==
// @include http://*
// ==/UserScript==