Greasy Fork

ao3 skin menu item

add link to your skins to the dropdown menu

目前为 2016-04-25 提交的版本。查看 最新版本

// ==UserScript==
// @name         ao3 skin menu item
// @version      0.2
// @namespace    https://greasyfork.org/users/36620
// @description  add link to your skins to the dropdown menu
// @author       scriptfairy
// @match        http*://archiveofourown.org/*
// @grant        none
// ==/UserScript==

(function($){
$('body').ready(function(){
     var name = $('ul.navigation li:first-child a').attr('href');
    name = name.slice(name.lastIndexOf('/')+1);
    $('#greeting li.dropdown:first-child ul.menu li:first-child').after($('<li><a href="/users/'+name+'/skins">My Skins</a></li>'));
    $('#greeting li.dropdown:first-child ul.menu li:contains("My Collections")').after($('<li><a href="/users/'+name+'/works/drafts">My Drafts</a></li>'));
    });
})(window.jQuery);