Puts the "Marked for Later" button on the home page of AO3.
< 脚本 Put Marked for Later Button on AO3 Home 的反馈
To match the style of the other navigation items I replaced <li> with <li class="dropdown">.
<li>
<li class="dropdown">
To put it before the search tab for mobile you can replace .append with .find('li.search').before
.append
.find('li.search').before
You can also delete lines 27, 28 and 30 as they are not doing anything and causing a warning.
登录以发布留言。
To match the style of the other navigation items I replaced
<li>with<li class="dropdown">.To put it before the search tab for mobile you can replace
.appendwith.find('li.search').beforeYou can also delete lines 27, 28 and 30 as they are not doing anything and causing a warning.