Idlescape Notepad

Notepad for Idlescape

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 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);
})();