-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGithubRun.user.js
48 lines (40 loc) · 1.18 KB
/
GithubRun.user.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// ==UserScript==
// @name GithubRun
// @namespace http://www.github.com
// @description Adds a Live Run button to Github.com source files
// @include https://github.com/*/*
// @version 1
// @require https://ajax.googleapis.com/ajax/libs/jquery/2.2.3/jquery.min.js
// @grant none
// ==/UserScript==
(function () {
run();
function run() {
setupAjaxInterception();
addRunMenu();
}
function setupAjaxInterception() {
$(document).ajaxSuccess(function(event, xhr, settings) {
if (settings.url.indexOf("blob") !== -1) {
console.log( "Triggered ajaxSuccess handler. The ajax url was: " + settings.url);
addRunMenu();
}
});
}
function addRunMenu() {
var $rawButton = $("#raw-url:not(.rawgithub-added)");
if ($rawButton.length === 0) {
return;
}
var updatedHref = "http://rawgit.com" + $rawButton.attr("href").replace("/raw", "");
$rawButton.clone()
.attr("href", updatedHref)
.attr("id", "rawgithub-raw-url")
.text("Live Run")
.attr("title", "Clicking this button will open this page via rawgithub.com")
.addClass("tooltipped")
.prependTo($rawButton.parent())
;
$rawButton.addClass("rawgithub-added");
}
})();