Add a Twitter share button to repository page
נכון ליום
// ==UserScript==
// @name GitHub Repo Share-to-Twitter Button
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Add a Twitter share button to repository page
// @author eggplants
// @homepage https://github.com/eggplants
// @match *://github.com/*
// @grant none
// @license MIT
// ==/UserScript==
(window.onload = function() {
"use strict";
const owner = document.getElementsByClassName('url fn')[0].textContent;
const pjname = document.getElementsByClassName('mr-2 flex-self-stretch')[0].textContent.trim();
const repo = 'https://github.com/' + owner + '/' + pjname;
const description = document.getElementsByClassName('f4 mt-3')[0].textContent.trim();
var a = document.getElementsByClassName('pagehead-actions flex-shrink-0 d-none d-md-inline')[0];
var b = document.createElement('a');
b.className = 'btn btn-sm';
b.setAttribute('target', '_blank');
b.href = 'http://twitter.com/share?text="' + description + '"%0a%0a' + repo;
b.textContent = 'Share to Twitter';
var c = document.createElement('li');
c.appendChild(b);
a.insertBefore(c, document.getElementsByClassName('pagehead-actions flex-shrink-0 d-none d-md-inline')[0].children[0]);
}());