Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/webtorrent/webtorrent.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/chrome
diff options
context:
space:
mode:
authorFeross Aboukhadijeh <feross@feross.org>2013-12-06 07:10:22 +0400
committerFeross Aboukhadijeh <feross@feross.org>2013-12-06 07:10:22 +0400
commit782cd3f57ad15ea19d210846a2c884f62d080356 (patch)
tree401407f62790afcf42ce22f69ea359ec34a47811 /chrome
parentf839fcc9f6efec1df55ecc4cfbc04c35a7c30ed1 (diff)
move chrome app to `webtorrent-chrome` repo
https://github.com/feross/webtorrent-chrome
Diffstat (limited to 'chrome')
-rw-r--r--chrome/background.js8
-rw-r--r--chrome/calculator-128.pngbin16537 -> 0 bytes
-rw-r--r--chrome/calculator-16.pngbin1049 -> 0 bytes
-rw-r--r--chrome/manifest.json30
-rw-r--r--chrome/window.html9
5 files changed, 0 insertions, 47 deletions
diff --git a/chrome/background.js b/chrome/background.js
deleted file mode 100644
index 055203a..0000000
--- a/chrome/background.js
+++ /dev/null
@@ -1,8 +0,0 @@
-chrome.app.runtime.onLaunched.addListener(function() {
- chrome.app.window.create('window.html', {
- 'bounds': {
- 'width': 400,
- 'height': 500
- }
- });
-}); \ No newline at end of file
diff --git a/chrome/calculator-128.png b/chrome/calculator-128.png
deleted file mode 100644
index 85963f3..0000000
--- a/chrome/calculator-128.png
+++ /dev/null
Binary files differ
diff --git a/chrome/calculator-16.png b/chrome/calculator-16.png
deleted file mode 100644
index 0d9135e..0000000
--- a/chrome/calculator-16.png
+++ /dev/null
Binary files differ
diff --git a/chrome/manifest.json b/chrome/manifest.json
deleted file mode 100644
index ef5e481..0000000
--- a/chrome/manifest.json
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- "manifest_version": 2,
-
- "name": "Hello World!",
- "description": "My first Chrome App.",
- "version": "0.1.0",
-
- "app": {
- "background": {
- "scripts": ["background.js"]
- }
- },
-
- "permissions": [
- {
- "socket": [
- "tcp-connect:*:*",
- "tcp-listen::*",
- "udp-send-to::*",
- "udp-bind::*"
- ]
- },
- "storage",
- "unlimitedStorage",
- "fileSystem",
- "http://*/*"
- ],
-
- "icons": { "16": "calculator-16.png", "128": "calculator-128.png" }
-} \ No newline at end of file
diff --git a/chrome/window.html b/chrome/window.html
deleted file mode 100644
index 44339ee..0000000
--- a/chrome/window.html
+++ /dev/null
@@ -1,9 +0,0 @@
-<!DOCTYPE html>
-<html>
- <head>
- </head>
- <body>
- <div id="console"></div>
- <script src='bundle.js'></script>
- </body>
-</html> \ No newline at end of file