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