-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbackground.js
executable file
·195 lines (175 loc) · 4.58 KB
/
background.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
var SpeechRecognition = SpeechRecognition || webkitSpeechRecognition
var SpeechGrammarList = SpeechGrammarList || webkitSpeechGrammarList
var SpeechRecognitionEvent = SpeechRecognitionEvent || webkitSpeechRecognitionEvent
var recognition = new SpeechRecognition();
var speechRecognitionList = new SpeechGrammarList();
recognition.lang = 'en-US';
var microphoneEnabled = false;
var scrollingUp = false;
var scrollingDown = false;
var scroll;
var speed = 1;
var interval = 20;
var speeds = [ 1, 1, 1, 1, 2, 4, 6];
var intervals = [150,100,50, 20, 20, 20, 20];
var i = 3;
var tab = chrome.tabs.getCurrent;
var scrollingTab;
var permissionAsked = false;
disableMicrophone();
function disableMicrophone() {
chrome.browserAction.setIcon({path:"img/disabled.png"});
recognition.stop();
console.log('Recognition stopped');
}
function enableMicrophone() {
chrome.browserAction.setIcon({path:"img/enabled.png"});
recognition.start();
console.log('Recognition started');
}
function updateMicrophoneState() {
if ( microphoneEnabled == false ) {
microphoneEnabled = true;
enableMicrophone();
} else {
microphoneEnabled = false;
disableMicrophone();
stopScroll();
}
}
chrome.browserAction.onClicked.addListener(updateMicrophoneState);
function scrollUp() {
console.log('Recognized word: Scroll UP');
startScrollUp();
}
function scrollDown() {
console.log('Recognized word: Scroll DOWN');
startScrollDown();
}
function Stop() {
console.log('Recognized word: STOP');
terminateScroll();
}
recognition.onresult = function(event) {
var result = event.results[0][0].transcript;
console.log(result);
if(result.includes('stop')){
Stop();
}
else if(result.includes('app')||result.includes('up')){
scrollUp();
}
else if(result.includes('own'||'un')){
scrollDown();
}
else if(result.includes('st'||'fa')){
increaseSpeed();
}
else if(result.includes('low'||result.includes('ll'))){
decreaseSpeed();
}
}
recognition.onerror = function(event) {
switch(event.error){
case 'not-allowed':
var permissionUrl = 'permission.html';
if(!permissionAsked){
permissionAsked = true;
chrome.tabs.create({ url: permissionUrl });
}
console.log("error");
};
// permissionAsked = false;
}
recognition.onend = function() {
if(microphoneEnabled){
recognition.start();
}
};
function increaseSpeed() {
if((i+1)<7){
i++;
}
speed = speeds[i];
interval = intervals[i];
if(speed == 1){
clearInterval(scroll);
startScroll();
}
console.log( speed +'/'+ interval);
}
function decreaseSpeed() {
if(i>0){
i--;
}
speed = speeds[i];
interval = intervals[i];
if(speed == 1){
clearInterval(scroll);
startScroll();
}
console.log( speed +'/'+ interval);
}
function startScroll(){
if(scrollingUp){
scrollingUp = false;
startScrollUp();
}
if(scrollingDown){
scrollingDown = false;
startScrollDown();
}
}
function startScrollDown() {
if(!scrollingUp&&!scrollingDown){
scrollingTab = chrome.tabs.getCurrent;
console.log('Scroll Down started');
scroll = setInterval(function(){
chrome.tabs.update(scrollingTab.id,
{'url':
'javascript:document.documentElement.scrollTop+='+speed+';'});
// console.log('..scrolling down'+speed);
}, interval);
scrollingDown = true;
}
else if(scrollingUp){
stopScroll();
startScrollDown();
}
}
function startScrollUp() {
if(!scrollingUp&&!scrollingDown){
scrollingTab = chrome.tabs.getCurrent;
console.log('Scroll UP started');
scroll = setInterval(function(){
chrome.tabs.update(scrollingTab.id,
{'url':
'javascript:document.documentElement.scrollTop-='+speed+';'});
//console.log('..scrolling up'+speed);
}, interval);
scrollingUp = true;
}
else if(scrollingDown){
stopScroll();
startScrollUp();
}
}
function stopScroll() {
if(scrollingUp||scrollingDown){
console.log('Scroll stopped');
clearInterval(scroll);
scrollingUp = false;
scrollingDown = false;
}
}
function terminateScroll() {
if(scrollingUp||scrollingDown){
console.log('Scroll terminated');
clearInterval(scroll);
scrollingUp = false;
scrollingDown = false;
i = 3;
speed = speeds[i];
interval = intervals[i];
}
}