Greasy Fork

userstyles.org - Auto Enable Source Editor

auto enables the source editor on userstyle.org

当前为 2016-08-16 提交的版本,查看 最新版本

// ==UserScript==
// @name         userstyles.org - Auto Enable Source Editor
// @namespace    https://greasyfork.org/users/649
// @version      1.0
// @description  auto enables the source editor on userstyle.org
// @author       Adrien Pyke
// @match        *://userstyles.org/styles/*/edit*
// @match        *://userstyles.org/styles/new*
// @grant        none
// ==/UserScript==

(function() {
	'use strict';

	document.querySelector('#enable-source-editor-code').click();
})();