diff options
author | teramako | 2009-02-26 11:40:39 +0000 |
---|---|---|
committer | teramako | 2009-02-26 11:40:39 +0000 |
commit | ac7be85f715265c42f6ab467ffbe50e11f4f77d3 (patch) | |
tree | df8a01dbbdc57a5e51cbd14f91be97370650cbba /xpathBlink.js | |
parent | 1c211b94a40821e0c347ed9689628fb953763627 (diff) | |
download | vimperator-plugins-ac7be85f715265c42f6ab467ffbe50e11f4f77d3.tar.bz2 |
add PLUGIN_INFO
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@30544 d0d07461-0603-4401-acd4-de1884942a52
Diffstat (limited to 'xpathBlink.js')
-rw-r--r-- | xpathBlink.js | 34 |
1 files changed, 24 insertions, 10 deletions
diff --git a/xpathBlink.js b/xpathBlink.js index 8e53170..64519a7 100644 --- a/xpathBlink.js +++ b/xpathBlink.js @@ -1,13 +1,27 @@ -/** - * For vimperator 0.6pre - * @author teramako teramako@gmail.com - * - * Usage: - * - * xpath blink nodes - * :xpathb[link] [EXPRESSION] - * :xb [EXPERSSION] - */ +var PLUGIN_INFO = +<VimperatorPlugin> +<name>{NAME}</name> +<description>blink elements by XPath</description> +<author mail="teramako@gmail.com" homepage="http://vimperator.g.hatena.ne.jp/teramako/">teramako</author> +<require type="extension" id="inspector@mozilla.org">DOM Inspector</require> +<license>MPL 1.1</license> +<version>1.0</version> +<minVersion>1.2</minVersion> +<maxVersion>2.0</maxVersion> +<updateURL>http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk/xpathBlink.js</updateURL> +<detail><![CDATA[ +for test xpath + +== Usage== +:xpathb[link] {expression}: +:xb {expression} + blink specified elements with XPath {expression} + +== Caution == +It's need "DOM Inspector" addon +]]></detail> +</VimperatorPlugin>; + (function(){ const Cc = Components.classes; const Ci = Components.interfaces; |