imgur output formatter

Adds fully formatted output containers

اعتبارا من 16-09-2015. شاهد أحدث إصدار.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

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.

ستحتاج إلى تثبيت إضافة مثل Stylus لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتتمكن من تثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

(لدي بالفعل مثبت أنماط للمستخدم، دعني أقم بتثبيته!)

// ==UserScript==
// @name           imgur output formatter
// @namespace      surrealmoviez.info
// @description    Adds fully formatted output containers
// @include        http://imgur.com/*
// @include        http://www.imgur.com/*
// @include        https://imgur.com/*
// @include        https://www.imgur.com/*
// @version        1.0.1
// @grant          none
// ==/UserScript==

function extractUrls() {
    var imgUrls = [];
    $('head > meta[property="og:image"]').each(function (i, v) {
        link = $(v).attr('content');
        if (!link.endsWith('?fb')) {
            imgUrls.push(link);
        }
    });
    return imgUrls;
}

$(document).ready(function () {
    var imgUrls = extractUrls();
    var decoratedLinks = '<center><img src="' + imgUrls.join('">\n\n<img src="') + '"></center>';
    var plainLinks = imgUrls.join("\n");

    var preformattedLinksPanel = '<div class="new-panel post-options-panel">'
            + '<h2 class="new-panel-header">Preformatted Links</h2>'
            + '<div class="post-options">'
            + '<textarea id="preformatted-links-decorated" style="height: 100px; width: 100%;" onclick="this.select();" title="Click to select">' + decoratedLinks + '</textarea>'
            + '<textarea id="preformatted-links-plain" style="height: 100px; width: 100%;" onclick="this.select();" title="Click to select">' + plainLinks + '</textarea>'
            + '</div></div>';

    $('#right-content').prepend(preformattedLinksPanel);
});