diff options
author | teramako | 2009-03-04 15:44:38 +0000 |
---|---|---|
committer | teramako | 2009-03-04 15:44:38 +0000 |
commit | 84b76ac42f6276ad5e45d9c20f3c8ddb994d850a (patch) | |
tree | 1f446c8004d8a9b682ac37120d3ec90a89e8a4b3 /inspector.js | |
parent | 9c9bcfd0638f192e89802c43b805bbb4bdf7b632 (diff) | |
download | vimperator-plugins-84b76ac42f6276ad5e45d9c20f3c8ddb994d850a.tar.bz2 |
add PLUGIN_INFO
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@30843 d0d07461-0603-4401-acd4-de1884942a52
Diffstat (limited to 'inspector.js')
-rw-r--r-- | inspector.js | 38 |
1 files changed, 21 insertions, 17 deletions
diff --git a/inspector.js b/inspector.js index 3d882b5..38022c3 100644 --- a/inspector.js +++ b/inspector.js @@ -1,20 +1,24 @@ -/** - * ==VimperatorPlugin== - * @name inspector - * @description DOM Inspector commands - * @depend "DOM Inspector" inspector@mozilla.org - * @author teramako teramako@gmail.com - * @minVersion 2.0pre - * @version 1.1 - * ==/VimperatorPlugin== - * - * Usage: - * - * :inspect #{id} -> inspect the element of the {id} in browser content - * :inspect! #{id} -> inspect the element of the {id} in firefox - * :inspect[!] -f[rame] #{id} -> inspect the document in the frame element of the {id} - * :inspect {str} -> inspect the return value of evaluated the {str} - */ +let PLUGIN_INFO = +<VimperatorPlugin> +<name>{NAME}</name> +<description>DOM Inspector command</description> +<require type="extension" id="inspector@mozilla.org">DOM Inspector</require> +<author mail="teramako@gmail.com" homepage="http://vimperator.g.hatena.ne.jp/teramako/">teramako</author> +<version>0.2</version> +<minVersion>2.0pre</minVersion> +<maxVersion>2.0</maxVersion> +<detail><![CDATA[ +== Usage == +:inspect #{id}: + inspect the element of the {id} in browser content +:inspect! #{id}: + inspect the element of the {id} in firefox +:inspect[!] -f[rame] #{id}: + inspect the document in the frame element of the {id} +:inspect {str}: + inspect the return value of evaluated the {str} +]]></detail> +</VimperatorPlugin>; (function(){ |