Emphasize private repo for GitHub

Display very large sticky `lock` icon.

Du musst eine Erweiterung wie Tampermonkey, Greasemonkey oder Violentmonkey installieren, um dieses Skript zu installieren.

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.

Sie müssten eine Skript Manager Erweiterung installieren damit sie dieses Skript installieren können

(Ich habe schon ein Skript Manager, Lass mich es installieren!)

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.

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

// ==UserScript==
// @name         Emphasize private repo for GitHub
// @namespace    http://kyanny.me/
// @version      0.1
// @description  Display very large sticky `lock` icon.
// @author       Kensuke Nagae
// @match        https://github.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    if (document.querySelectorAll('h1.private').length > 0) {
        var svg = document.querySelector('svg.octicon.octicon-lock').cloneNode(true);
        svg.setAttribute('height', 160);
        svg.setAttribute('width', 120);
        var div = document.createElement('div');
        div.style.position = 'fixed';
        div.style.top = '60px';
        div.style.left = '60px';
        div.appendChild(svg);
        document.body.appendChild(div);
    }
})();