Add files via upload

This commit is contained in:
2018-01-15 12:39:28 -05:00
committed by GitHub
parent 9a42411f2e
commit 38d597b759
4 changed files with 35 additions and 2 deletions
BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

+4 -2
View File
@@ -1,2 +1,4 @@
# Unichat-Firefox-Extension
The repo for the firefox port of the Unichat Chrome Extension
This is the repository for the Unichat Extensions
To download, go to the releases section
and the installation instrustions are avaible here: http://techapple.net/2015/09/how-to-install-load-unpacked-extension-in-google-chrome-browser-os-chromebooks/ and here: https://www.mattcutts.com/blog/how-to-install-a-chrome-extension-from-github/
+20
View File
@@ -0,0 +1,20 @@
{
"manifest_version": 2,
"name": "Unichat",
"description": "This is the Unichat Popup",
"version": "1.6",
"icons": {
"128": "7POdNS3.png"
},
"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:700; height:200;}
</style>
</head>
<body style="background-color: #2d2d2d; overflow-y: hidden">
<iframe src="https://legend-of-iphoenix.github.io/UniChatDemo/Chrome%20Extension/UnichatEMBED.html" width="100%" height="100%" frameborder="0">
</iframe>
</body>
</html>