Metadata Block

From GreaseSpot Wiki
Revision as of 07:00, 11 December 2007 by Marti (talk | contribs) (Symmetry update... and prep for v0.8.0 :D)
Jump to navigationJump to search


Description

The metadata block is a section of a user script that does not execute any code, but describes the script. It contains the script name, namespace, description, and include and exclude rules.

The metadata block appears in JavaScript comments. It begins with the line

// ==UserScript==

and ends with

// ==/UserScript==

Everything between those lines is in the format

// @key    value

If the metadata block includes a key that Greasemonkey does not understand, it will simply be ignored.

Examples | Other Keys | Caveats | Notes

Syntax

// ==UserScript==

// == @key value

// ==/UserScript==

Value: Object
Compatibility: Greasemonkey 0.2.5+
Keys
Properties
@name
@namespace
@description
@include
@exclude
  • All properties are optional

Properties


@name

Value: String
Usage: // @name My Script
  • The name of the script. This appears in the script manager and monkey menu, and is also used to determine whether to overwrite an old version of a script or to install it separately. If no name is provided, it will be inferred from the file name.

top | back

@namespace

Value: URI
Usage: // @namespace http://www.example.com/gmscripts/
  • The namespace, along with the name, is used to determine whether to overwrite an old version of a script or to install it separately. A script author will usually put all of their scripts under one common namespace, and then assign each script a unique name. If two scripts have the same name, but a different namespace, they can co-exist. However, two scripts of the same name in the same namespace are assumed to be replacements for one another. While the namespace is non-semantic, it should be a URI. If no namespace is provided, it is assumed to be the domain from which the script is installed. Since a script can live on various servers or on a local file system, authors should specify this.

top | back

@description

Value: String
Usage: // @description This script even does the laundry!
  • Just a brief summary of what the script does, to present to the user who is installing it.

top | back

@include

Value: String
Usage: // @include http://www.example.com/*

top | back

@exclude

Value: String
Usage: // @exclude http://www.example.com/foo/*

top | back

Examples

 // ==UserScript==
 // @name          My Script
 // @namespace     http://www.example.com/gmscripts/
 // @description   Scripting is fun
 // @include       http://www.example.com/*
 // @include       http://www.example.org/*
 // @exclude       http://www.example.org/foo
 // ==/UserScript==

top

Other Keys

Some user scripts contain other keys in the metadata block. Common keys are @author, @version, or @homepage. These metadata keys serve no technical purpose. They are ignored by the Greasemonkey extension, but they can be read by human beings or other code.

top

Caveats

Changing the metadata of an installed script does not do anything, as this data is only accessed during installation. The script must be re-installed for these changes to take. Alternatively, config.xml can be modified manually.

top

Notes

top