Explorar el Código

add ext

pull/1/head
10sr hace 12 años
padre
commit
7e5b949af7
Se han modificado 1 ficheros con 9 adiciones y 0 borrados
  1. +9
    -0
      _keysnail.js

+ 9
- 0
_keysnail.js Ver fichero

@@ -158,6 +158,15 @@ plugins.options["twitter_client.use_jmp"] = true;
////////////////////////////////////////////
// my ext

ext.add("open-url-from-clipboard", function(){
var list = command.getClipboardText().split("\n");
for(var i = 0; i < list.length; i++){
if(list[i] != ""){
gBrowser.loadOneTab(list[i], null, null, null, false);
}
}
}, "open tabs of newline separated url list from clipboard");

ext.add("list-url", function(){
var urls = [];
var aa = window.content.document.getElementsByTagName("a");


Cargando…
Cancelar
Guardar