Strange. Here they are, from my dev copy of the readme. I actually plan to release an update in the next few days, since I have decided to add/drop support for some hooks.
Code:
************* INLINEMOD ACTION SWITCH START ****************
Installing these hooks do not add any new loops to inlinemod.php,
so settings have not been included to disable these hooks.
Thanks to vBulletin 3.7, security was increased on inlinemod, so
we can be a little more at ease about this hook. Still, exercise
caution about the variables you modify here.
In inlinemod.php, find:
------------------------------
switch ($_POST['do'])
------------------------------
Add above:
------------------------------
($hook = vBulletinHook::fetch_hook('inlinemod_action_switch_start')) ? eval($hook) : false;
------------------------------