The issue has been closed
It's able to get github repo's size from api.github.com/repos/:owner/:repo
,
in the JSON's "size"
key.
this is a Browser side javascript sample:
fetch("https://api.github.com/repos/llvm/llvm-project")
.then(resq => {
return resq.json();
})
.then(_json => {
console.log(_json["size"]);
})
732642
the unit is "KB".
I'd like to show it like this:

Or in another more beautiful way.
Example URL:
https://github.com/:owner/:repo

posted by fregante over 5 years ago 
// ==UserScript==
// @name github-enhance
// @namespace http://js.zombie110year.top/
// @version 0.1.0
// @description show repo's size
// @author zombie110year@outlook.com
// @match https://github.com/*/*
// @grant none
// @run-at document-end
// ==/UserScript==
(() => {
const ICON_DATABASE = `<svg t="1566195284663" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1131" width="16" height="16"><path d="M894.030769 177.230769c0-74.830769-171.323077-135.876923-382.030769-135.876923S129.969231 102.4 129.969231 177.230769v47.261539c0 74.830769 171.323077 135.876923 382.030769 135.876923s382.030769-61.046154 382.030769-135.876923V177.230769zM129.969231 334.769231c0 59.076923 171.323077 106.338462 382.030769 106.338461S894.030769 393.846154 894.030769 334.769231v96.492307c0 74.830769-171.323077 135.876923-382.030769 135.876924S129.969231 506.092308 129.969231 431.261538V334.769231z m0 0c0 59.076923 171.323077 106.338462 382.030769 106.338461S894.030769 393.846154 894.030769 334.769231v96.492307c0 74.830769-171.323077 135.876923-382.030769 135.876924S129.969231 506.092308 129.969231 431.261538V334.769231z m0 206.769231c0 59.076923 171.323077 106.338462 382.030769 106.338461s382.030769-47.261538 382.030769-106.338461v96.492307c0 74.830769-171.323077 135.876923-382.030769 135.876923s-382.030769-59.076923-382.030769-133.907692v-98.461538z m0 208.738461c0 59.076923 171.323077 106.338462 382.030769 106.338462s382.030769-47.261538 382.030769-106.338462V846.769231c0 74.830769-171.323077 135.876923-382.030769 135.876923S129.969231 921.6 129.969231 846.769231v-96.492308z" p-id="1132" fill="#515151"></path></svg>`;
const SESSION_STORAGE_KEY = "api_fetched";
parseURL()
.then(obj => {
return `https://api.github.com/repos/${obj.owner}/${obj.repo}`
})
.then(async (url) => {
if (sessionStorage.getItem(SESSION_STORAGE_KEY) === null) {
let data = await fetch(url).then(resp => resp.json());
sessionStorage.setItem(SESSION_STORAGE_KEY, JSON.stringify(data));
}
})
.then(main);
async function main() {
let status = JSON.parse(sessionStorage.getItem(SESSION_STORAGE_KEY));
showRepoSize(status["size"]);
}
async function showRepoSize(size) {
let ul = document.querySelector(".numbers-summary");
let li = document.createElement("li");
li.innerHTML = `<a href="${location.pathname}">${ICON_DATABASE} <span class="num text-emphasized">${size}</span> kilobytes</a>`;
ul.appendChild(li);
}
async function parseURL() {
let pattern = RegExp("/([^/]+)/([^/]+)/?");
let paths = pattern.exec(location.pathname);
let obj = {
owner: paths[1],
repo: paths[2]
}
return obj;
}
})();
made a user script.
posted by zombie110year over 5 years ago
Can we have this ? instead of d/ling a separate extension ?
posted by luzpaz over 5 years ago
The scope of Refined GitHub is not to include every feature possible. Given there is an extension that does this already and a userscript posted to handle this, we shouldn't duplicate those efforts into RGH and introduce more maintenance/bloat.
posted by busches over 5 years ago