Images and Links

Easily comment with images and links

Από την 09/09/2015. Δείτε την τελευταία έκδοση.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

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

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

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

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

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.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

// ==UserScript==
// @name         Images and Links
// @version      0.2.1
// @description  Easily comment with images and links
// @author       otro_user_gil
// @include      http://www.steamgifts.com/*
// @include      https://steamgifts.com/*
// @include      http://*.steamgifts.com/*
// @include      https://*.steamgifts.com/*
// @grant        none
// @namespace https://greasyfork.org/users/15121
// ==/UserScript==

$(".align-button-container").append("<script type='text/javascript'> function imagenup(){var img = prompt('Insert the link of your image here', ''); var link = '![Cat](' + img + ')'; if(img == null || img == ''){return img;}else{ var textarea = document.getElementsByName('description'); textarea[0].value = textarea[0].value + link; } } function url(){var link = prompt('Insert the URL link here', ''); var enlace = '[custom text]('+ link +')'; if(link == null || link == ''){return link;} else{ var textarea = document.getElementsByName('description'); textarea[0].value = textarea[0].value + enlace; }} </script> <div style='position: relative; width: 65px; float: right; margin-left: 15px;'> <input type='button' onclick='imagenup()' value='Image' style='position: absolute; cursor:pointer; margin-top: -14px;'/> <input type='button' onclick='url()' value='Url' style='margin-top: -14px; position: absolute; cursor:pointer; margin-left: 80px;'/>  </div>")