Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d80f834e90 | |||
| c4a95b0e18 | |||
| 2f3c88586c | |||
| 9486b0ef7b | |||
| 93daab32b3 | |||
| a1b73a70d0 | |||
| 426f7e5635 | |||
| edb582db2c | |||
| 7ff119e73d |
@@ -1,7 +0,0 @@
|
||||
This is the actual download repository
|
||||
|
||||
HOWEVER
|
||||
|
||||
YOU SHOULD NOT USE THIS TO DOWNLOAD IT
|
||||
|
||||
GO TO THE WIKI / DOCUMENTATION TO DOWNLOAD IT
|
||||
Binary file not shown.
@@ -1 +1,4 @@
|
||||
This is the repository for the Unichat Chrome Extension
|
||||
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/
|
||||
|
||||
|
||||
+1
-1
@@ -3,7 +3,7 @@
|
||||
|
||||
"name": "Unichat",
|
||||
"description": "This Starts the Unichat Extension Popup",
|
||||
"version": "1.0",
|
||||
"version": "1.2",
|
||||
"icons": {
|
||||
"128": "7POdNS3.png"
|
||||
},
|
||||
|
||||
+43
-5
@@ -1,11 +1,49 @@
|
||||
<html>
|
||||
<head>
|
||||
<style type="text/css">
|
||||
body {width:550; height:310;}
|
||||
body {width:600; height:310;}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<iframe src="https://lax18.github.io/UniChatDemo/Chrome%20Extension/UnichatEMBED.html" width="100%" height="100%" frameborder="0">
|
||||
</iframe>
|
||||
<!-- Google Tag Manager -->
|
||||
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','GTM-NJR6RD8');</script>
|
||||
<!-- End Google Tag Manager -->
|
||||
<!--<script src="https://www.gstatic.com/firebasejs/4.6.2/firebase.js"></script>
|
||||
<script>
|
||||
// Initialize Firebase
|
||||
var config = {
|
||||
apiKey: "AIzaSyC9eUkCvbKv7nzQocRelivvyvWAlmiORsg",
|
||||
authDomain: "unichat-10bbd.firebaseapp.com",
|
||||
databaseURL: "https://unichat-10bbd.firebaseio.com",
|
||||
projectId: "unichat-10bbd",
|
||||
storageBucket: "unichat-10bbd.appspot.com",
|
||||
messagingSenderId: "847148140589"
|
||||
};
|
||||
firebase.initializeApp(config);
|
||||
</script>-->
|
||||
|
||||
<script src="https://www.gstatic.com/firebasejs/4.8.0/firebase.js"></script>
|
||||
<script>
|
||||
// Initialize Firebase
|
||||
var config = {
|
||||
apiKey: "AIzaSyBhhzNlObAwm6hqm62NI6BRikA2o5pYhkg",
|
||||
authDomain: "unichat-demo.firebaseapp.com",
|
||||
databaseURL: "https://unichat-demo.firebaseio.com",
|
||||
projectId: "unichat-demo",
|
||||
storageBucket: "",
|
||||
messagingSenderId: "712992764474"
|
||||
};
|
||||
firebase.initializeApp(config);
|
||||
</script>
|
||||
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
|
||||
<link rel="stylesheet" type="text/css" href="https://lax18.github.io/UniChatDemo/css/style.css">
|
||||
</head>
|
||||
<body>
|
||||
<div id="output"></div>
|
||||
<div id="IN" style="width: 100%;">
|
||||
<input type="text" id="message">
|
||||
<input type="button" value="Send" onclick="submitMessage()">
|
||||
</div>
|
||||
Settings: <br />
|
||||
<input type="button" value="Highlight Notifications" onclick="toggleNotificationOnHighlight()">
|
||||
<script src="https://lax18.github.io/UniChatDemo/js/main.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user