windhamdavid 9 years ago
commit
41d10da4ce
10 changed files with 3649 additions and 0 deletions
  1. 1 0
      .gitignore
  2. 1835 0
      canary.css
  3. 10 0
      devtools.js
  4. BIN
      images/icon128.png
  5. BIN
      images/icon16.png
  6. BIN
      images/icon48.png
  7. BIN
      images/icon96.png
  8. 7 0
      index.html
  9. 14 0
      manifest.json
  10. 1782 0
      stable.css

+ 1 - 0
.gitignore

@@ -0,0 +1 @@
+.DS_store

File diff suppressed because it is too large
+ 1835 - 0
canary.css


+ 10 - 0
devtools.js

@@ -0,0 +1,10 @@
+var xhr = new XMLHttpRequest(),
+	stylesheet = 'stable.css';
+
+if (/Chrome\/(\d\d)/.exec(navigator.userAgent)[1] > 39) {
+	stylesheet = 'canary.css'
+}
+
+xhr.open("GET", "/" + stylesheet, false);
+xhr.send();
+chrome.devtools.panels.applyStyleSheet(xhr.responseText);

BIN
images/icon128.png


BIN
images/icon16.png


BIN
images/icon48.png


BIN
images/icon96.png


+ 7 - 0
index.html

@@ -0,0 +1,7 @@
+<html>
+  <head>
+    <script src="devtools.js"></script>
+  </head>
+  <body>
+  </body>
+</html>

+ 14 - 0
manifest.json

@@ -0,0 +1,14 @@
+{
+   "description": "Sunburst Devtools Theme.",
+   "devtools_page": "index.html",
+   "homepage_url": "https://github.com/windhamdavid/sunburst-devtools",
+   "icons": {
+      "128": "images/icon128.png",
+      "16": "images/icon16.png",
+      "48": "images/icon48.png"
+   },
+   "manifest_version": 2,
+   "name": "DevTools Theme: Sunburst",
+   "update_url": "https://clients2.google.com/service/update2/crx",
+   "version": "1.0.0"
+}

File diff suppressed because it is too large
+ 1782 - 0
stable.css


Some files were not shown because too many files changed in this diff