// ==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==