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.