Compare commits
26 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| bec26faf46 | |||
| d52dddac93 | |||
| ba6ab6d0a6 | |||
| 9761a0e401 | |||
| 5d19eeaa04 | |||
| 85e1d68c85 | |||
| 11d895ae7b | |||
| 50561d4772 | |||
| 56925ea985 | |||
| 328f0f0acc | |||
| 0fbad43b50 | |||
| eaa780ad63 | |||
| 670dbb1894 | |||
| ceb6444234 | |||
| 8b440b4a30 | |||
| fe9a985b0f | |||
| 2bb82a0ee3 | |||
| 44793e0167 | |||
| c177d0690c | |||
| cb3e843bfc | |||
| 0997d696b1 | |||
| 09aec831dc | |||
| 97f6cf5a62 | |||
| 4357ac6235 | |||
| 7f2d2eae6f | |||
| fa0c36b99e |
+159
@@ -0,0 +1,159 @@
|
||||
* {
|
||||
font-family: Lato, sans-serif;
|
||||
color: #aaa;
|
||||
}
|
||||
|
||||
.centered {
|
||||
margin: 0 auto;
|
||||
width: fit-content;
|
||||
}
|
||||
|
||||
body {
|
||||
color: #d8d8d8;
|
||||
background-color: #2d2d2d;
|
||||
}
|
||||
|
||||
a {
|
||||
z-index: 0;
|
||||
position: relative;
|
||||
color: #999;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
z-index: -1;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
bottom: 1px;
|
||||
left: 0;
|
||||
background-color: #d1d1d1;
|
||||
border-radius: 2px;
|
||||
visibility: hidden;
|
||||
-webkit-transform: scaleX(0);
|
||||
transform: scaleX(0);
|
||||
-webkit-transition: all 0.3s ease-in-out 0s;
|
||||
transition: all 0.3s ease-in-out 0s, height 0.3s ease-in-out .3s;
|
||||
}
|
||||
|
||||
.highlight a {
|
||||
color: #777;
|
||||
}
|
||||
|
||||
.highlight a:before {
|
||||
background-color: #1f1f1f;
|
||||
}
|
||||
|
||||
a:hover:before {
|
||||
visibility: visible;
|
||||
-webkit-transform: scaleX(1.05);
|
||||
transform: scaleX(1.05);
|
||||
height: 17px;
|
||||
}
|
||||
|
||||
.battlesquid {
|
||||
margin-top: 30px;
|
||||
text-shadow: 0 0 10px #fefcc9, -4px -6px 15px #feec85, 11px 1px 20px #ffae34, 7px -14px 25px #ec760c, 8px -17px 30px #cd4606, -10px -20px 20px #973716, 2px -20px 50px #451b0e;
|
||||
color: #FFF;
|
||||
}
|
||||
|
||||
span {
|
||||
border-radius: 2px;
|
||||
color: #000;
|
||||
font-size: 16px;
|
||||
cursor: pointer;
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
background-color: #c4c4c4;
|
||||
border: 1px solid #000;
|
||||
display: inline-block;
|
||||
margin: 4px;
|
||||
padding: 2px 10px;
|
||||
}
|
||||
|
||||
.tutorial {
|
||||
padding: 7px;
|
||||
}
|
||||
|
||||
.outputText:nth-child(odd) {
|
||||
background-color: #2d2d2d;
|
||||
}
|
||||
|
||||
.outputText:nth-child(even) {
|
||||
background-color: #222;
|
||||
}
|
||||
|
||||
.highlight {
|
||||
color: #000;
|
||||
background-color: #ddd;
|
||||
}
|
||||
|
||||
#output {
|
||||
width: 100%;
|
||||
height: 50vh;
|
||||
overflow-y: scroll;
|
||||
border-radius: 5px;
|
||||
background-color: #222;
|
||||
box-shadow: 0 1px 5px #222 inset,0 1px 0 #666;
|
||||
}
|
||||
|
||||
input[type=text],input[type=password] {
|
||||
width: 90%;
|
||||
box-sizing: border-box;
|
||||
border: 3px solid #ccc;
|
||||
-webkit-transition: .5s;
|
||||
transition: .5s;
|
||||
outline: none;
|
||||
color: #222;
|
||||
margin: 0 0 20px;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
input[type=text]:focus,input[type=password]:focus {
|
||||
border: 3px solid #454545;
|
||||
}
|
||||
|
||||
input[type=button], button {
|
||||
border-radius: 5px;
|
||||
color: #000;
|
||||
font-size: 16px;
|
||||
cursor: pointer;
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
background-color: #c4c4c4;
|
||||
border: 1px solid #000;
|
||||
display: inline-block;
|
||||
-webkit-transition-duration: .4s;
|
||||
transition-duration: .4s;
|
||||
margin: 4px;
|
||||
padding: 2px 10px;
|
||||
}
|
||||
|
||||
input[value="Send"] {
|
||||
width: 10%;
|
||||
}
|
||||
|
||||
input[type=button]:hover, button:hover {
|
||||
box-shadow: 5px 5px 10px 0 rgba(0,0,0,0.8);
|
||||
}
|
||||
|
||||
h1 {
|
||||
color: #ccc;
|
||||
}
|
||||
|
||||
h3 {
|
||||
color: #aaa;
|
||||
}
|
||||
|
||||
ol,ul:.tags {
|
||||
width: 33%;
|
||||
color: #fff;
|
||||
background-color: #222;
|
||||
border-radius: 5px;
|
||||
box-shadow: 0 1px 5px #222 inset,0 1px 0 #666;
|
||||
}
|
||||
|
||||
strong {
|
||||
color: #000;
|
||||
}
|
||||
@@ -1,4 +1,4 @@
|
||||
This is the repository for 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 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/
|
||||
|
||||
|
||||
+2
-2
@@ -2,8 +2,8 @@
|
||||
"manifest_version": 2,
|
||||
|
||||
"name": "Unichat",
|
||||
"description": "This Starts the Unichat Extension Popup",
|
||||
"version": "1.2",
|
||||
"description": "This is the Unichat Popup",
|
||||
"version": "1.7",
|
||||
"icons": {
|
||||
"128": "7POdNS3.png"
|
||||
},
|
||||
|
||||
+5
-43
@@ -1,49 +1,11 @@
|
||||
<html>
|
||||
<head>
|
||||
<style type="text/css">
|
||||
body {width:600; height:310;}
|
||||
</style>
|
||||
<!-- 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">
|
||||
body {width:700; height:325;}
|
||||
</style>
|
||||
</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 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>
|
||||
|
||||
Reference in New Issue
Block a user