사용자:Respice post te/test4.js

위키백과, 우리 모두의 백과사전.

참고: 설정을 저장한 후에 바뀐 점을 확인하기 위해서는 브라우저의 캐시를 새로 고쳐야 합니다. 구글 크롬, 파이어폭스, 마이크로소프트 엣지, 사파리: ⇧ Shift 키를 누른 채 "새로 고침" 버튼을 클릭하십시오. 더 자세한 정보를 보려면 위키백과:캐시 무시하기 항목을 참고하십시오.

// Make sure the utilities module is loaded (will only load if not already)
mw.loader.using('mediawiki.util', function () {
    // Wait for the page to be parsed
    $(document).ready(function () { 
        // Add a new link to the toolbox
        var link = mw.util.addPortletLink(
            'p-tb', // This is the ID of the toolbox portlet section
            mw.util.getUrl('위키백과:사랑방'), // Link URL
            '사랑방', // Link text
            't-villagepump', // Link ID (unique)
            '위키백과 커뮤니티와의 대화를 위한 공간' // Tooltip
        );
    });
});