Idlescape Notepad

Notepad for Idlescape

当前为 2020-09-01 提交的版本,查看 最新版本

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         Idlescape Notepad
// @namespace    http://tampermonkey.net/
// @version      0.2.2
// @description  Notepad for Idlescape
// @author       Grettz
// @match        *://*.idlescape.com/game*
// @require      http://code.jquery.com/jquery-latest.js
// ==/UserScript==

(function() {
  'use strict';
  // Notes button
  $("#usersOnline").prepend('<button id="notesButton">Notes</button>');
  $("#notesButton").css("background-color", "inherit").css("color", "inherit").css("float", "left").css("border", "none").css("outline", "none");
  // Notepad
  $('.game-content').append(
    '<div id="notesContainer">' +
      '<textarea id="notesArea" name="Notes"></textarea>' +
      '<input type="button" id="saveNote" value="Save Note">' +
    '</div>'
  );
  $("#notesContainer").css("position", "relative").css("top", 0).css("left", 0).css("z-index", 100010);
  $("#notesContainer").css("display", "none").css("height", "0px").css("width", "0px");
  $("#notesArea").css("background-color", "white").css("resize", "both").css("white-space", "pre");

  // Open/Close Notepad
  let notesOpen = false;
  $("#notesButton").on("click", () => {
    if (!notesOpen) { // Open notepad
      let width = "350px";
      let height = "200px";
      // Get saved notepad size from session
      let storedWidth = sessionStorage.getItem("notepadWidth");
      let storedHeight = sessionStorage.getItem("notepadHeight");
      if (storedWidth && storedHeight) {
        width = storedWidth;
        height = storedHeight;
      };

      // Show and animate notepad
      $("#notesContainer").css("display", "block");
      $("#notesArea").animate({
        width: width,
        height: height
      }, 350, () => {
        notesOpen = true;
      });

    } else { //  Close notepad
      // Save notepad size for session
      let width = $("#notesArea").width() + 6 + "px";
      let height = $("#notesArea").height() + 6 + "px";
      sessionStorage.setItem("notepadWidth", width);
      sessionStorage.setItem("notepadHeight", height);
      $("#notesArea").animate({
        width: "0px",
        height: "0px"
      }, 350, () => {
        $("#notesContainer").css("display", "none");
        notesOpen = false;
      });
    };
  });

  // Save button
  $("#saveNote").on("click", () => {
    saveNotes();
  });

  function saveNotes() {
    let notes = $("#notesArea").val();
    localStorage.setItem("notesData", notes);
    console.log("Notes saved!");
  };

  function loadNotes() {
    let notes = localStorage.getItem("notesData");
    if (notes == "undefined" || notes == null) {
      $("#notesArea").val("New Note");
      return
    };
    $("#notesArea").val(notes);
    console.log("Notes loaded!");
  };

  window.addEventListener("beforeunload", saveNotes);
  window.addEventListener("load", loadNotes);
})();