// ==UserScript==
// @title twitter_draft
// @name twitter_draft
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://twitter.com/*
// @grant none
// ==/UserScript==
var result = document.evaluate('id("dashboard-profile-prompt")', document, null, 7, null);
result.snapshotItem(0).insertAdjacentHTML("afterend", "<textarea></textarea><br><input type='button' value='save'><input type='button' value='load'>");
var result2 = document.evaluate('id("dashboard-profile-prompt")/following-sibling::input', document, null, 7, null);
result2.snapshotItem(0).addEventListener('click', sample, false);
result2.snapshotItem(1).addEventListener('click', sample2, false);
function sample() {
var result3 = document.evaluate('id("dashboard-profile-prompt")/following-sibling::textarea', document, null, 7, null);
//console.log(result3.snapshotItem(0).value);
localStorage.setItem('draft', result3.snapshotItem(0).value);
}
function sample2() {
var result3 = document.evaluate('id("dashboard-profile-prompt")/following-sibling::textarea', document, null, 7, null);
//console.log(result3.snapshotItem(0).value);
var draft = localStorage.getItem('draft');
result3.snapshotItem(0).value = draft;
}