Add files via upload

This commit is contained in:
2018-01-11 11:56:23 -05:00
committed by GitHub
parent 8a7915d74d
commit 0a54d0d3cc
4 changed files with 28 additions and 2 deletions
BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

+1 -2
View File
@@ -1,2 +1 @@
# Unichat-Chrome-Extension
This is the OFFICIAL CHROME EXTENSION OF UNICHAT
This is the repository for the planned future Unichat Chrome Extension
+16
View File
@@ -0,0 +1,16 @@
{
"manifest_version": 2,
"name": "Unichat",
"description": "This starts unichat",
"version": "1.0",
"browser_action": {
"default_icon": "7POdNS3.png",
"default_popup": "popup.html"
},
"permissions": [
"activeTab",
"storage"
]
}
+11
View File
@@ -0,0 +1,11 @@
<html>
<head>
<style type="text/css">
body {width:200; height:300;}
</style>
</head>
<body>
<iframe src="https://lax18.github.io/UniChatDemo/Chrome%20Extension/Unichat/UnichatEMBED.html" width="100%" height="100%" frameborder="0">
</iframe>
</body>
</html>