Today i made a greasmonkey-script for putting shared notes on websites. One persson can add a note to a webpage they visiting, when that persson or someone else in the same sharing-group visit that website, the note will apear. // ==UserScript== // @name url_notes // @namespace url_notes // @description keep notes on urls // ==/UserScript== var category = GM_getValue('url_note_category', ''); if(!category) { change_category(); category = GM_getValue('url_note_category', 'test'); } function change_category() { category = prompt("Välj en kategori/grupp", GM_getValue('url_note_category', '')); GM_setValue('url_note_category', category); } GM_registerMenuCommand("Change note category", change_category); GM_registerMenuCommand("Add a note to this page", add_note); get_notes(category, document.location.href, false); function add_note() { var category = GM_getValue('url_note_category', 'test'); get_notes(category, document.location.href, true); } More
2011-04-01