Skip to content

Commit

Permalink
chore: more objs
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobkim9881 committed Feb 15, 2022
1 parent 7deec50 commit 64b8f0c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion functions/springCooler.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ function mouseEvent(e) {
}
let num = parseInt(localStorage.mouseCounter);
localStorage.mouseCounter = num + 1;
if (num % 11 === 0 ) {
if (num % 3 === 0 ) {
let ballRad = 100;
//Math.trunc(Math.random() * 100)
let ballPos = {x: e.clientX + ballRad , y: e.clientY};
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "__MSG_appName__",
"version": "0.2.5.4",
"version": "0.2.5.5",
"permissions": ["activeTab", "declarativeContent", "contextMenus", "storage", "scripting"],
"host_permissions": ["https://*/*"],
"content_scripts": [
Expand Down

0 comments on commit 64b8f0c

Please sign in to comment.