For example in GreaseMonkey you can name your script, add a description, list authors, have links to the source, etc. all with a formatted comment.
// ==UserScript==
// @name My script name
// @version 0.1
// @description Does a specific action
// @author FirstName LastName
// ==/UserScript==
We could support this with some basic pattern matching. It would make a proper script manager easier to implement down the line too if that's something we want to go for.
For example in GreaseMonkey you can name your script, add a description, list authors, have links to the source, etc. all with a formatted comment.
We could support this with some basic pattern matching. It would make a proper script manager easier to implement down the line too if that's something we want to go for.