WordPress.org Plugins Enhancements

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

目前為 2017-04-25 提交的版本,檢視 最新版本

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==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';
}