Close Twitter share complete

try to take over the world!

当前为 2018-02-15 提交的版本,查看 最新版本

// ==UserScript==
// @name         Close Twitter share complete
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       Nazgand
// @match        https://twitter.com/intent/tweet/complete*
// @grant        window.close
// ==/UserScript==

(function() {
    'use strict';

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