-
Notifications
You must be signed in to change notification settings - Fork 0
/
event.js
28 lines (26 loc) · 874 Bytes
/
event.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
// function sendSelected( tab ){
// let msg= {
// 'selected': 'clickData.selectionText'
// }
// chrome.tabs.sendMessage(tab.id,msg);
// //sendData();
// }
// function httpGet(theUrl){
// var xmlHttp = new XMLHttpRequest();
// xmlHttp.open( "GET", theUrl, false ); // false for synchronous request
// xmlHttp.send( null );
// return xmlHttp.responseText;
// }
// chrome.contextMenus.create(contextMenuItem);
// chrome.contextMenus.onClicked.addListener(function(clickData){
// let pre = "https://amzn";
// pre="Your"
// if(clickData.menuItemId == "TowelReviewer" && clickData.selectionText ){
// if( (clickData.selectionText+"").startsWith(pre)){
// url = "http://localhost/db1/getdata.php?link=";
// url = url + clickData.selectionText;
// alert( httpGet(url) );
// alert(clickData.selectionText);
// }
// }
// })