General :  K-Meleon Web Browser Forum
General discussion about K-Meleon 
lynx view
Posted by: disrupted
Date: March 24, 2009 11:43PM

simulates viewing page in lynx-text browser. helpful when testing webpages in text mode for accessibilty or just for converting a badly designed page in text mode for easy read.

idea from this ff extension:
https://addons.mozilla.org/en-US/firefox/addon/1944


# K-Meleon Macros (http://kmeleon.sourceforge.net/wiki/index.php?id=MacroLanguage)

# ---------- lunxview


lynxview{
opentab("www.yellowpipe.com/yis/tools/lynx/IElynxviewEXT.cgi?url=".$URL);
}

lynxview_BuildMenu{
setmenu(DocumentSave,macro,"Lynx View",lynxview);
}

$OnInit=$OnInit."lynxview_BuildMenu;";
# ---------------------------------------------------------------------
$macroModules=$macroModules."lynxview;";


restart kmeleon, new menu entry will be added when you right click on a page 'lunx view", selecting lynx view will send the page url to yellowstone server to be processed as text.

UPDATE: (lynx view for links)
# K-Meleon Macros (http://kmeleon.sourceforge.net/wiki/index.php?id=MacroLanguage)

# ---------- lunxview
# Dependencies : -
# Resources : -
# Preferences : -
#
# --------------------------------------------------------------------------------------

lynxview{
menugrayed=(hostname($URL)=="");
opentab("www.yellowpipe.com/yis/tools/lynx/IElynxviewEXT.cgi?url=".$URL);
}

lynxview2{
menugrayed=(hostname($LinkURL)=="");
opentab("www.yellowpipe.com/yis/tools/lynx/IElynxviewEXT.cgi?url=".$LinkURL);
}

lynxview_BuildMenu{
setmenu(DocumentSave,macro,"Lynx View",lynxview);
setmenu(LinkSave,macro,"Lynx View",lynxview2);
}

$OnInit=$OnInit."lynxview_BuildMenu;";
# ---------------------------------------------------------------------
$macroModules=$macroModules."lynxview;";


Options: ReplyQuote


K-Meleon forum is powered by Phorum.