K-Meleon
KMeleonWiki > Resources > MacroLibrary > KmmVideoDownloader
Submitted by: desga2, originally by Yagami_ex
Notes:
This macro integrates the VideoDownloader web service which may help you to save Flash Movies from YouTube and other video sites to disk.
Updates:
Open your User Macro Folder (Edit > Configuration > User-Defined Macros) or your Macro Folder
(Edit > Configuration > Macros) and create the following text files:
# K-Meleon Macros (http://kmeleon.sourceforge.net/wiki/index.php?id=MacroLanguage)
# ---------- VideoDownloader -----------------------------------------------------------------------------
#
# Dependencies : main.kmm (OpenURL), sendto.kmm (menus)
# Resources : -
# Preferences : -
#
# ------------------------------------------------------------------------------------------------------------------
VideoDownloader{
menugrayed=(hostname($URL)=="");
$OpenURL="http://videodownloader.net/get/?url=".$URL; &OpenURL_InNew;
}
# ----- PRIVATE
_VideoDownloader_BuildMenu{
index($macroModules,";SendTo;")>-1?setmenu($_SendTo_Page,macro,"&VideoDownloader",VideoDownloader):setmenu(DocumentOpenExternal,macro,"&VideoDownloader",VideoDownloader);
}
$OnInit=$OnInit."_VideoDownloader_BuildMenu;";
# ------------------------------------------------------------------------------------------------------------------
$macroModules=$macroModules."VideoDownloader;";