diff options
author | anekos | 2009-02-03 23:08:28 +0000 |
---|---|---|
committer | anekos | 2009-02-03 23:08:28 +0000 |
commit | afcb1a088ab1214222a3869e5b8f4dd6e4b6f220 (patch) | |
tree | fa438be36b9017c63764049062cf985dd4155688 | |
parent | 17508f1fee34dc0fc5e43cd84edda7731fb44978 (diff) | |
download | vimperator-plugins-afcb1a088ab1214222a3869e5b8f4dd6e4b6f220.tar.bz2 |
PLUGIN_INFO の修正
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@29504 d0d07461-0603-4401-acd4-de1884942a52
-rw-r--r-- | uaSwitchLite.js | 51 |
1 files changed, 27 insertions, 24 deletions
diff --git a/uaSwitchLite.js b/uaSwitchLite.js index 44b177a..c388c28 100644 --- a/uaSwitchLite.js +++ b/uaSwitchLite.js @@ -3,35 +3,38 @@ var PLUGIN_INFO = <name>UserAgentSwitcherLite</name> <description>switch user agent</description> <description lang='ja'>user agent 切り替え</description> - <version>0.1.0</version> + <version>0.1.1</version> <author homepage='http://d.hatena.ne.jp/pekepekesamurai/'>pekepeke</author> + <updateURL>http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk/uaSwitchLite</updateURL> <minVersion>2.0pre</minVersion> <maxVersion>2.0pre</maxVersion> <detail lang='ja'><![CDATA[ - == Commands - :ua [uaname] - User Agent を切り替えます。 - :ua - User Agent を表示します。 + == Commands == + :ua [uaname] - User Agent を切り替えます。 + :ua - User Agent を表示します。 - == .vimperatorrrc -javascript <<EOM -liberator.globalVariables.useragent_list = [ -{ - description: 'Internet Explorer 7 (Windows Vista)', - useragent: 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)', - appname: 'Microsoft Internet Explorer', - appversion: '4.0 (compatible; MSIE 7.0; Windows NT 6.0)', - platform: 'Win32', -}, { - description: 'Netscape 4.8 (Windows Vista)', - useragent: 'Mozilla/4.8 [en] (Windows NT 6.0; U)', - appname: 'Netscape', - appversion: '4.8 [en] (Windows NT 6.0; U)', - platform: 'Win32', -}, { - description: 'Google', - useragent: 'Googlebot/2.1 (+http://www.google.com/bot.html)', -}]; -EOM + == .vimperatorrrc == + >|| + javascript <<EOM + liberator.globalVariables.useragent_list = [ + { + description: 'Internet Explorer 7 (Windows Vista)', + useragent: 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)', + appname: 'Microsoft Internet Explorer', + appversion: '4.0 (compatible; MSIE 7.0; Windows NT 6.0)', + platform: 'Win32', + }, { + description: 'Netscape 4.8 (Windows Vista)', + useragent: 'Mozilla/4.8 [en] (Windows NT 6.0; U)', + appname: 'Netscape', + appversion: '4.8 [en] (Windows NT 6.0; U)', + platform: 'Win32', + }, { + description: 'Google', + useragent: 'Googlebot/2.1 (+http://www.google.com/bot.html)', + }]; + EOM + ||< ]]></detail> </VimperatorPlugin>; |