Craigslist Post Renew in New Window

This modifies your post renewal links in your account, to popup in a new window. I was annoyed that CL would use the same window, and then I would have to click back, and click the next renew link, etc etc.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name           Craigslist Post Renew in New Window
// @namespace      Craigslist Post Renew in New Window
// @description    This modifies your post renewal links in your account, to popup in a new window. I was annoyed that CL would use the same window, and then I would have to click back, and click the next renew link, etc etc.
// @include        https://accounts.craigslist.org/
// @include	   https://accounts.craigslist.org/login/home
// @version 0.0.1.20141207215649
// ==/UserScript==

var autoclick = "no"; //Change this to yes (and make sure you allow popups from accounts.craigslist.org) if you want it to click the links for you
/*
DO NOT CHANGE ANYTHING BELOW
*/
for (i=0; i<document.forms.length; i++) {
	var form = document.forms[i];
	var counter = 0;
	if(form.elements.namedItem("go")){
		var input = form.elements.namedItem("go");
		var go_val = input.value;
		if(go_val == "renew"){
			document.forms[i].setAttribute('target','_blank');
			autoclick = autoclick.toLowerCase();
			if(autoclick == "yes"){
				counter = 1;
				document.forms[i].submit();
			}
		}
	}
}

if(counter == 1){ //this will cause the page to refresh to display the renewed posting
	location.reload(true);	
}