FA Additional BBCode Helper

Adds clickable functionality to common BBCode inputs

2017-05-16 या दिनांकाला. सर्वात नवीन आवृत्ती पाहा.

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey, Greasemonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

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

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

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

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्क्रिप्ट व्यवस्थापक एक्स्टेंशन इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्क्रिप्ट व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्टाईल व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

// ==UserScript==
// @name         FA Additional BBCode Helper
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Adds clickable functionality to common BBCode inputs
// @author       JaysonHusky
// @match        https://www.furaffinity.net/controls/journal/
// @grant        none
// @require      https://code.jquery.com/jquery-latest.js
// ==/UserScript==

(function() {
    'use strict';
     // Add Special Stylesheet for keywords
		var JaysBBCodeCSS=document.createElement('style');
		var jayBBCodeStyle=document.createTextNode(`
			#abhjh {
border-radius: 3px;
background:rgba(1,0,0,0.1);
margin-right:5px;
				padding:3px;
}
a#whatsthis {
float:right;
clear:right;
font-size: 10px;
}
.helpcur {
cursor: help;
}

a.additionalbbcodeclicker{
				cursor:pointer;
margin-right; 10px;
			}
table#additionalbbcodes td.clickable{
				background: transparent;
transition: 1s all;
text-align:center;
}
table#additionalbbcodes td.clickable:hover{
				background: grey;
transition: 1s all;
			}
#abhjhbox {
font-size: 11px;
display:block;
margin: 10px;
}
		`);
		JaysBBCodeCSS.appendChild(jayBBCodeStyle);
		document.getElementsByTagName('body')[0].appendChild(JaysBBCodeCSS);
   $('form .floatleft').append(`
<br/><br/>
<div id="abhjh">
<h3>&nbsp;&nbsp;Additional BBCode Helper</h3>
<br/>
<table id="additionalbbcodes" border="0" style="width:680px;">
<tr>
</tr>
<tr>
<td><b>Links</b></td>
<td width="10px"></td>
<td class="clickable"><a class="additionalbbcodeclicker" onclick="performInsert(this, \'[url]\', \'[/url]\');">URL</a></td>
<td class="clickable"><a class="additionalbbcodeclicker" onclick="performInsert(this, \':icon\', \':\');">Username &amp; Icon</a></td>
<td class="clickable"><a class="additionalbbcodeclicker" onclick="performInsert(this, \':link\', \':\');">Username Only</a></td>
<td class="clickable"><a class="additionalbbcodeclicker" onclick="performInsert(this, \':\', \'icon:\');">Icon Only</a></td>
</tr>
<tr>
<td><b>Formatting</b></td>
<td width="10px"></td>
<td class="clickable"><a class="additionalbbcodeclicker" onclick="performInsert(this, \'[color=white]\', \'[/color]\');">Color</a></td>
<td class="clickable"><a class="additionalbbcodeclicker" onclick="performInsert(this, \'[quote]\', \'[/quote]\');">Quote</a></td>
<td class="clickable"><a class="additionalbbcodeclicker" onclick="performInsert(this, \'[s]\', \'[/s]\');">Strikethrough</a></td>
<td class="clickable"><a class="additionalbbcodeclicker" onclick="performInsert(this, \'[sup]\', \'[/sup]\');">Superscript</a></td>
<td class="clickable"><a class="additionalbbcodeclicker" onclick="performInsert(this, \'[sub]\', \'[/sub]\');">Subscript</a></td>
</tr>
<tr>
<td><b>Media</b></td>
<td width="10px"></td>
<td class="clickable"><a class="additionalbbcodeclicker" onclick="performInsert(this, \'[yt]\', \'[/yt]\');">YouTube</a></td>
</tr>
</table>
<span id="abhjhbox">Additional BBCode Helper is a add-on to add clickable functionality to the most commonly used BBCode on FurAffinity.<br/>You must highlight the text you want to "wrap" in the tags before clicking the tag you want.</span>
</div>
<br/>
`);
})();