background.js 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. const menuItems = [
  2. { "id": "1", name: "Google(zh)", url: "http://lens.google.com/uploadbyurl?hl=zh&url=" },
  3. { "id": "2", name: "Google(en)", url: "http://lens.google.com/uploadbyurl?hl=en&url=" },
  4. { "id": "3", name: "qidb", url: "http://iqdb.org/?url=" },
  5. { "id": "4", name: "SauceNAO", url: "http://saucenao.com/search.php?url=" },
  6. { "id": "5", name: "TinEye", url: "http://tineye.com/search?url=" },
  7. ];
  8. const idToUrl = {};
  9. chrome.runtime.onInstalled.addListener(function () {
  10. menuItems.forEach(p => {
  11. chrome.contextMenus.create({
  12. id: p.id, contexts: ["image"], title: `${p.id} 在 ${p.name} 搜索图片`
  13. })
  14. idToUrl[p.id] = p.url;
  15. })
  16. });
  17. chrome.contextMenus.onClicked.addListener((info, tab) => {
  18. var searchUrl = idToUrl[info.menuItemId] + info.srcUrl;
  19. chrome.tabs.sendMessage(tab.id, { type: 'getKeyboardState' }, (response) => {
  20. const { ctrl, shift } = response;
  21. if (shift) {
  22. // Shift+点击:在新窗口打开
  23. chrome.windows.create({ url: searchUrl, });
  24. } else {
  25. chrome.tabs.query({ active: true, currentWindow: true }, function (tabs) {
  26. const currentTabIndex = tabs[0].index;
  27. if (ctrl) {
  28. // Ctrl+点击:在后台打开
  29. chrome.tabs.create({ url: searchUrl, active: false, index: currentTabIndex + 1, });
  30. } else {
  31. // 普通点击:在当前标签页后面打开并切换过去
  32. chrome.tabs.create({ url: searchUrl, active: true, index: currentTabIndex + 1, });
  33. }
  34. }); //tabs.query
  35. }
  36. }); //sendMessage
  37. });