| @@ -252,9 +252,10 @@ var echoTabInfo = (function(){ | |||||
| var currenttab; | var currenttab; | ||||
| function _display(msg){ | function _display(msg){ | ||||
| display.prettyPrint(msg, { | display.prettyPrint(msg, { | ||||
| timeout: 2000, | |||||
| timeout: 1500, | |||||
| style: { | style: { | ||||
| "font-size": "18px" | |||||
| "font-size": "18px", | |||||
| "font-family": "monospace" | |||||
| } | } | ||||
| }); | }); | ||||
| } | } | ||||
| @@ -275,8 +276,9 @@ var echoTabInfo = (function(){ | |||||
| var title = window.content.document.title; | var title = window.content.document.title; | ||||
| var url = window.content.location.href; | var url = window.content.location.href; | ||||
| _display( | _display( | ||||
| (idx + 1).toString() + " / " + | |||||
| len.toString() + " : " + | |||||
| "[" + | |||||
| (idx + 1).toString() + "/" + | |||||
| len.toString() + "] " + | |||||
| title + " <" + | title + " <" + | ||||
| decodeURIComponent(url) + ">" | decodeURIComponent(url) + ">" | ||||
| ); | ); | ||||