whatimg - add [img] tags

you need to set 'upload layout' to boxed in whatimg settings

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name        whatimg - add [img] tags
// @namespace   diff
// @description you need to set 'upload layout' to boxed in whatimg settings
// @include     https://whatimg.com/
// @include     https://whatimg.com/upload.php
// @require     https://greasyfork.org/scripts/1003-wait-for-key-elements/code/Wait%20for%20key%20elements.js?version=2765
// @version     0.2
// @grant       none
// ==/UserScript==

// using waitForKeyElements.js so this works with the drag'n'drop upload script: http://userscripts.org/scripts/show/105520

function doit() {
	var a = document.querySelector('textarea.input_field');
	var output = "";
	
	if (a) {
		var list = a.value.match(/(https?:\S*?\S\.(png|jpg|jpeg|gif))$/gim);
		for (i=0; i<list.length; i++) {
			output += "[img]" + list[i] + "[/img]\n";
		}
		
		a.value = a.value.replace(/^\s+(?=http)/gim, ""); // remove leading space from original links
		
		a.value += "\n[img] tags only:\n" + output;
	}
}

waitForKeyElements ("textarea.input_field", doit);