-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add extension scripts, manifest and placeholder icons
- Loading branch information
1 parent
6c4a919
commit f5d4829
Showing
10 changed files
with
1,294 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
Changelog | ||
========= | ||
|
||
[Unreleased] | ||
------------ | ||
- | ||
|
||
[v0.0.1] - 2020-05-18 | ||
--------------------- | ||
[GitHub Release Page](https://github.com/ToranSharma/Xporcle-Extension/releases/tag/v0.0.1) | ||
### Added | ||
- README | ||
- GNU GPLv3 License | ||
- This changelog | ||
- Manifest | ||
- Content script. This handles the addition of the user interface and the | ||
processing of messages from the server. | ||
- Background script. This handles to connection to the server and relays | ||
message sending between the content script and the server. | ||
- Options page popup placeholder. | ||
|
||
[Unreleased]: https://github.com/ToranSharma/Xporcle-Extension/compare/master...develop | ||
[v0.0.1]: https://github.com/ToranSharma/Xporcle-Extension/releases/tag/v1.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,198 @@ | ||
// Open page tracking and options page request handling | ||
const pages = { | ||
openedTabs: [] | ||
}; | ||
|
||
chrome.runtime.onMessage.addListener( | ||
(message, sender, sendResponse) => | ||
{ | ||
if (message.type == "showPageAction") | ||
{ | ||
chrome.pageAction.show(sender.tab.id); | ||
if (!pages.openedTabs.includes(sender.tab.id)) | ||
pages.openedTabs.push(sender.tab.id); | ||
} | ||
if (message.type == "pageClosed") | ||
{ | ||
const index = pages.openedTabs.indexOf(sender.tab.id); | ||
if (index != -1) | ||
pages.openedTabs.splice(index, 1); | ||
} | ||
if (message.type == "tabsRequest") | ||
{ | ||
sendResponse(pages); | ||
} | ||
} | ||
); | ||
|
||
// Web Socket Handling | ||
|
||
let ws = null; | ||
let roomCode = null; | ||
let username = null; | ||
let host = null; | ||
let messagePort = null; | ||
let scores = {}; | ||
let urls = {}; | ||
let playing = null; | ||
|
||
chrome.runtime.onConnect.addListener( | ||
(port) => | ||
{ | ||
console.log("Page connecting"); | ||
if (port.name === "messageRelay") | ||
{ | ||
messagePort = port; | ||
port.onMessage.addListener( | ||
(message) => | ||
{ | ||
console.log("Page sent a message"); | ||
console.log(message); | ||
if (message.type === "connectionStatus") | ||
{ | ||
console.log("Page is asking about the connection status"); | ||
// Request to see if we are still connected to a room | ||
if (ws !== null) | ||
{ | ||
port.postMessage( | ||
{ | ||
type: "connectionStatus", | ||
connected: true, | ||
room_code: roomCode, | ||
username: username, | ||
host: host, | ||
scores: scores, | ||
urls: urls | ||
} | ||
); | ||
ws.send(JSON.stringify({type: "url_update", url: message["url"]})) | ||
} | ||
else | ||
{ | ||
port.postMessage({type: "connectionStatus", connected: false}); | ||
} | ||
|
||
} | ||
else if (message.type === "startConnection") | ||
{ | ||
startConnection(message.initialMessage); | ||
} | ||
else | ||
{ | ||
// This is a message to forward on to the server | ||
ws.send(JSON.stringify(message)); | ||
|
||
if (message.type === "live_scores_update") | ||
{ | ||
playing = message["playing"] | ||
} | ||
} | ||
} | ||
); | ||
|
||
// Handle port disconnect | ||
port.onDisconnect.addListener( | ||
() => | ||
{ | ||
console.log("page disconnected"); | ||
messagePort = null; | ||
|
||
if (playing) | ||
{ | ||
playing = false; | ||
// Send message to server that the player's playing state is false | ||
ws.send(JSON.stringify({type: "page_disconnect"})); | ||
} | ||
} | ||
); | ||
} | ||
} | ||
); | ||
|
||
|
||
function startConnection(initialMessage) | ||
{ | ||
console.log("Connecting to server"); | ||
|
||
username = initialMessage.username; | ||
|
||
if (initialMessage["code"] !== undefined) | ||
{ | ||
roomCode = initialMessage["code"]; | ||
} | ||
|
||
ws = new WebSocket("wss://toransharma.com/sporcle") | ||
|
||
ws.onerror = (error) => | ||
{ | ||
throw error; | ||
}; | ||
ws.onclose = (event) => | ||
{ | ||
console.log("connection closed"); | ||
reset(); | ||
}; | ||
ws.onopen = (event) => | ||
{ | ||
ws.send(JSON.stringify(initialMessage)); | ||
}; | ||
|
||
ws.onmessage = forwardMessage; | ||
} | ||
|
||
function forwardMessage(event) | ||
{ | ||
const message = JSON.parse(event.data); | ||
console.log(message); | ||
|
||
messageType = message["type"]; | ||
|
||
if (messageType === "new_room_code") | ||
{ | ||
host = true; | ||
roomCode = message["room_code"]; | ||
} | ||
else if (messageType === "join_room" && !message["success"]) | ||
{ | ||
ws.close(); | ||
reset(); | ||
} | ||
else if (messageType === "scores_update") | ||
{ | ||
playing = false; | ||
Object.assign(scores, message["scores"]); | ||
} | ||
else if (messageType === "start_quiz") | ||
{ | ||
playing = true; | ||
} | ||
else if (messageType === "url_update") | ||
{ | ||
urls[message["username"]] = message["url"]; | ||
} | ||
else if (messageType === "removed_from_room") | ||
{ | ||
const removedUser = message["username"]; | ||
if (removedUser === username) | ||
{ | ||
ws.close(); | ||
reset(); | ||
} | ||
else | ||
{ | ||
delete urls[removedUser]; | ||
} | ||
} | ||
|
||
if (messagePort !== null) | ||
{ | ||
messagePort.postMessage(message); | ||
} | ||
} | ||
|
||
function reset() | ||
{ | ||
ws = null; | ||
username = null; | ||
roomCode = null; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
{ | ||
"name" : "Xporcle", | ||
"description" : "Adds real-time multiplayer abilities to Sporcle.com", | ||
"version" : "0.0.1", | ||
"manifest_version" : 2, | ||
|
||
"icons" : { | ||
"16" : "icons/icon_16.png", | ||
"32" : "icons/icon_32.png", | ||
"48" : "icons/icon_48.png", | ||
"64" : "icons/icon_64.png", | ||
"128" : "icons/icon_128.png" | ||
}, | ||
|
||
"background" : { | ||
"scripts" : ["background.js"] | ||
}, | ||
|
||
"page_action" : { | ||
"show_matches" : ["https://www.sporcle.com/*"], | ||
"default_icon" : { | ||
"16" : "icons/icon_16.png", | ||
"32" : "icons/icon_32.png", | ||
"48" : "icons/icon_48.png", | ||
"64" : "icons/icon_64.png", | ||
"128" : "icons/icon_128.png" | ||
}, | ||
"default_title" : "Xporcle", | ||
"default_popup" : "options.html" | ||
}, | ||
|
||
"content_scripts" : [ | ||
{ | ||
"matches" : ["https://www.sporcle.com/*"], | ||
"js" : ["script.js"] | ||
} | ||
], | ||
|
||
"permissions" : ["storage"], | ||
|
||
"options_ui" : { | ||
"page" : "options.html", | ||
"open_in_tab" : false | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<!doctype html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<title>Xporcle Options</title> | ||
</head> | ||
<body> | ||
<h1>Xporcle <span id="version">v0.0.1</span></h1> | ||
<h2>Enable or Disable Features Here</h2> | ||
</body> | ||
</html> |
Oops, something went wrong.