2 Commits

Author SHA1 Message Date
npease d80f834e90 Update manifest.json 2018-01-11 14:04:49 -05:00
npease c4a95b0e18 Update popup.html 2018-01-11 14:04:25 -05:00
2 changed files with 43 additions and 5 deletions
+1 -1
View File
@@ -3,7 +3,7 @@
"name": "Unichat",
"description": "This Starts the Unichat Extension Popup",
"version": "1.1",
"version": "1.2",
"icons": {
"128": "7POdNS3.png"
},
+42 -4
View File
@@ -3,9 +3,47 @@
<style type="text/css">
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>