Change title edited file in editor to filename.
当前为
// ==UserScript==
// @name GitHub shorter title edited files
// @description Change title edited file in editor to filename.
// @icon https://i.imgur.com/KmWlHbe.png
// @match https://github.com/*/*/edit/master/*
// @grant none
// @run-at document-idle
// @version 0.0.1.20181229081144
// @namespace https://greasyfork.org/users/167625
// ==/UserScript==
document.title = document.getElementsByClassName("js-blob-filename")[0].value;