Close Twitter share complete

I was annoyed by the share windows staying open when I shared something to Twitter. This script closes those windows.

// ==UserScript==
// @name         Close Twitter share complete
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  I was annoyed by the share windows staying open when I shared something to Twitter. This script closes those windows.
// @author       Nazgand
// @match        https://twitter.com/intent/tweet/complete*
// @grant        window.close
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    window.close();
})();