aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--manifest.json1
-rw-r--r--network-graph.css3
-rw-r--r--network-graph.js4
3 files changed, 8 insertions, 0 deletions
diff --git a/manifest.json b/manifest.json
index 1637fae..1bdeb40 100644
--- a/manifest.json
+++ b/manifest.json
@@ -8,6 +8,7 @@
"content_scripts": [
{
"matches": ["*://*.github.com/*/*/network"],
+ "js": ["network-graph.js"],
"css": ["network-graph.css"]
}
],
diff --git a/network-graph.css b/network-graph.css
new file mode 100644
index 0000000..48f76a1
--- /dev/null
+++ b/network-graph.css
@@ -0,0 +1,3 @@
+#ng canvas {
+ -webkit-transform: rotate(270deg);
+} \ No newline at end of file
diff --git a/network-graph.js b/network-graph.js
new file mode 100644
index 0000000..7ccd534
--- /dev/null
+++ b/network-graph.js
@@ -0,0 +1,4 @@
+(function() {
+ var canvas = document.getElementById('ng').children[0];
+ canvas.setAttribute('height', 900);
+})(); \ No newline at end of file