Skip to content

Instantly share code, notes, and snippets.

@noromanba
Created April 14, 2016 09:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save noromanba/f079d517b3d38d91010383d919ffff30 to your computer and use it in GitHub Desktop.
Save noromanba/f079d517b3d38d91010383d919ffff30 to your computer and use it in GitHub Desktop.
test Magic TLD for UserScript
// ==UserScript==
// @name Magic TLD test
// @namespace http://noromanba.flavors.me
// @description Magic TLD test for UserScript
// @include http://*.blogspot.tld/*
// @grant none
// @noframes
// @run-at document-end
// @version 1
// @license CC0 http://creativecommons.org/publicdomain/zero/1.0/
// @author noromanba http://noromanba.flavors.me
// ==/UserScript==
(() => {
alert('*', location.href);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment