-
-
Notifications
You must be signed in to change notification settings - Fork 148
/
Copy pathuserscript.js
54 lines (47 loc) · 1.46 KB
/
userscript.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
49
50
51
52
53
54
// ==UserScript==
// @name klipse_plugin
// @namespace http://tampermonkey.net/
// @version 0.5
// @description klipse plugin
// @author You
// @match http://clojure.org/*
// @match https://gist.github.com/*
// @match https://clojuredocs.org/*
// @match https://lodash.com/*
// @grant none
// ==/UserScript==
function addScript(url){
var s = document.createElement('script');
s.src = url;
document.body.appendChild(s);
}
function addCss(url) {
var head = document.getElementsByTagName('head')[0];
var link = document.createElement('link');
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = url;
link.media = 'all';
head.appendChild(link);
}
var domain_to_settings_map = {
'clojuredocs.org': {
selector: '.example-body'
},
'gist.github.com': {
selector: '.blob-wrapper.type-clojure'
},
'clojure.org' : {
selector: 'code.language-clojure'
}
};
function domain_to_settings(domain){
return domain_to_settings_map[domain];
}
console.log('klipse plugin loaded by a userscript');
window.klipse_settings = domain_to_settings(window.location.hostname);
if(window.klipse_settings) {
console.log('klipse plugin settings: ', window.klipse_settings);
addCss('https://storage.googleapis.com/app.klipse.tech/css/codemirror.css');
addScript('https://storage.googleapis.com/app.klipse.tech/plugin/js/klipse_plugin.js');
}