Skip to content

Commit

Permalink
Fix URLs to Match Repository Renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
WesleyMcGinn committed Apr 4, 2024
1 parent f8eea57 commit 70e19e9
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 12 deletions.
4 changes: 2 additions & 2 deletions extension-files/manifest.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name" : "MySnail",
"short_name" : "🐌",
"version" : "1.9.4",
"version" : "1.9.5",
"manifest_version" : 3,
"minimum_chrome_version" : "49",
"permissions" : ["storage"],
"description" : "A customizable pet snail that appears on every website and file you visit with Chrome 🐌",
"homepage_url" : "https://github.com/Technology-Snail/MySnail-Chrome-Extension",
"homepage_url" : "https://github.com/Technology-Snail/MySnail",
"author" : {
"name" : "TechnologySnail",
"email" : "email.technologysnail@gmail.com",
Expand Down
2 changes: 1 addition & 1 deletion extension-files/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ document.addEventListener('DOMContentLoaded', function() {
document.getElementById("randomize").addEventListener('click', function() {
document.getElementById("randomize").disabled = "true";
document.documentElement.style.cursor = "progress";
getJSON("https://technology-snail.github.io/MySnail-Chrome-Extension/resources/ai_snail_training_data.json").then(function(x) {
getJSON("https://technology-snail.github.io/MySnail/resources/ai_snail_training_data.json").then(function(x) {
setTimeout(function() {
trainingData = x;
snailJudge.train(trainingData);
Expand Down
15 changes: 6 additions & 9 deletions resources/word_bubble.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,13 @@
<html lang="en">
<head>
<title>MySnail Word Bubble Test</title>
<script src="https://technology-snail.github.io/MySnail/resources/snail.js"></script>
<script>
snail = new mySnail();
</script>
</head>
<body>
<div id="word_bubble" width="504" height="224" style="position:fixed;left:100px;top:100px">
<svg width="504" height="224" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<polygon fill="white" points="115,170 95,220 150,170" stroke="#000000" stroke-width="4"/>
<rect fill="white" width="500" height="170" rx="21" ry="21" stroke="#000000" stroke-width="4" x="2" y="2"/>
</svg>
<div style="position:absolute;left:17px;top:17px;width:483px;height:133px;overflow-y:auto;font-family:Arial Rounded MT Bold,Arial,sans-serif;font-size:12pt;">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</div>
</div>
<h1>Lorem Ipsum</h1>
<p>Lorem ipsum, dolor sit amet. Consectetur adispisciting elit de uim vulputate!</p>
</body>
</html>

0 comments on commit 70e19e9

Please sign in to comment.