princess-synergy/www/js/plugins/JsScript12Set.js
2026-02-05 14:03:22 -06:00

15 lines
335 B
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*:
* @plugindesc
* @author
*
* @desc F8コンソールを自動で出す(PC版のみ)ついでにFPSも表示させる。
*
* @help
*/
(function() {
if(Utils.isNwjs()){
var current_window = require('nw.gui').Window.get();
current_window.showDevTools();
current_window.focus();
}
})();