WordPress.org Plugins Enhancements

Adds a SVN link to the end of the "Contributors & Developers" section of a WordPress plugin listing.

Verze ze dne 25. 04. 2017. Zobrazit nejnovější verzi.

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name        WordPress.org Plugins Enhancements
// @namespace   r-a-y/wporg/svn
// @include     https://wordpress.org/plugins/*
// @version     1.0.1
// @grant       none
// @description Adds a SVN link to the end of the "Contributors & Developers" section of a WordPress plugin listing.
// ==/UserScript==

var a = document.createElement('a'),
    sections = document.querySelectorAll('.section'),
    readMore = document.querySelectorAll('.section-toggle'),
    i = 0;

// Set up link for SVN repo.
a.setAttribute('href','https://plugins.svn.wordpress.org/' + wporgLocaleBanner.currentPlugin);
a.innerHTML = 'SVN repository';

// Add link to "Interested in Development?" section.
document.querySelector('.plugin-development').appendChild( a );

// Show all hidden content.
for( i; i < sections.length;i++ ) {
	sections[i].classList.remove('read-more');
}

// Remove all "Read More" links.
i = 0;
for( i; i < readMore.length;i++ ) {
	readMore[i].style.display = 'none';
}