diff options
author | teramako | 2009-11-27 17:47:47 +0000 |
---|---|---|
committer | teramako | 2009-11-27 17:47:47 +0000 |
commit | d36e2b40fc0ee4d7100437bfda3a823392e48c88 (patch) | |
tree | 520eef001c2328ac5f70b8e86679a9466e2ec223 /xpathBlink.js | |
parent | c0a4f9294b135db78339531d8c603ee713bab998 (diff) | |
download | vimperator-plugins-d36e2b40fc0ee4d7100437bfda3a823392e48c88.tar.bz2 |
restore PLUGIN_INFO
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@36017 d0d07461-0603-4401-acd4-de1884942a52
Diffstat (limited to 'xpathBlink.js')
-rw-r--r-- | xpathBlink.js | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/xpathBlink.js b/xpathBlink.js index 2ee15c0..79d108a 100644 --- a/xpathBlink.js +++ b/xpathBlink.js @@ -21,6 +21,30 @@ let INFO = </item> </plugin>; +let 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.1</version> +<minVersion>2.2</minVersion> +<maxVersion>2.3</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(){ let extid = "inspector@mozilla.org"; if (!Application.extensions.has(extid) || !Application.exntensions.get(extid).enabled){ |