Skip to content

Commit 641f357

Browse files
authored
Fixing the manifest issue for permissions. (#81)
* Fixing the manifest issue for permissions. * Fixing manifest to reflect new version and to remove permissions that we do not make use of.
1 parent 7d6bb93 commit 641f357

2 files changed

Lines changed: 6 additions & 5 deletions

File tree

extension/extension/background.js

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,11 @@ Background script. This works across all of Google Chrome.
66
// should be a cookie or browser.storage?
77
var RAW_DEBUG = false;
88

9-
// Manually update this variable before upload to Google store
10-
var WEBSOCKET_SERVER_URL = "wss://observer.csc.ncsu.edu/wsapi/in/"
9+
/* This variable must be manually updated to specify the server that
10+
* the data will be sent to.
11+
*/
12+
var WEBSOCKET_SERVER_URL = "wss://learning-observer.org/wsapi/in/"
13+
1114

1215
/*
1316
TODO: FSM

extension/extension/manifest.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"homepage_url": "https://github.com/ETS-Next-Gen/writing_observer",
66
"incognito": "not_allowed",
77
"offline_enabled": true,
8-
"version": "0.0.0.1",
8+
"version": "1.0.0.2",
99
"description": "Tracks writing in Google Docs, and provides nifty insights to you and your teachers!",
1010
"action": {
1111
"default_title": "Writing Process",
@@ -28,11 +28,9 @@
2828
},
2929
"permissions": [
3030
"webRequest",
31-
"declarativeNetRequest",
3231
"identity",
3332
"identity.email",
3433
"storage",
35-
"nativeMessaging",
3634
"scripting",
3735
"activeTab"
3836
],

0 commit comments

Comments
 (0)