-
Notifications
You must be signed in to change notification settings - Fork 0
/
content.js
70 lines (56 loc) · 1.27 KB
/
content.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
(function(){
//handle received messsage
chrome.runtime.onMessage.addListener(function(request,sender,sendResponse){
//console.log(request);
var type = request.type;
var value = request.value;
switch(type){
case "key":
//update search result
break;
case "search_action":
if(value == "up"){
//move cursor to previous key word
}else if (value == "donw"){
//move cursor to next key word
}
break;
case "case_sensitive":
// update search result
break;
case "words":
// update search result
break;
default:
console.log("invalid message :" + request);
break;
}
result = update_search(key);
//send current index and total number back
sendResponse(result);
});
function update_search(key){
var current_index = 0;
var total_number = 0;
//update index
return {
current:current_index;
total:total_number;
}
}
function render(){
// change background color of key words
}
//(recursion) traverse nodes
function traverse_nodes(root){
var children = root.children;
if(children){
for(var i = 0; i < children.length; i++){
var child = children[i];
traverse_nodes(child);
}
}else{//leaf node
//find key in text, and append node in list
}
}
})();