Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to write a simple google extension that will upon clicking "ctrl+alt+x" search for the selected text in google.

This is my mainfest:

{
  "name": "A jQuery Chrome extension",
  "version": "0.1",
  "description": "Use jQuery to build Chrome extensions",
  "content_scripts": [
    {
        "matches" : ["http://*/*"],
      "js": ["jquery.js", "jquery.hotkeys.js", "content.js"]
    }
  ],
  "background_page": "background.html",
  "permissions": [
    "tabs"
  ]
}

And this is my content.js:

$(document).bind('keydown', 'alt+ctrl+x', function() {

    var selectedText = window.getSelection().toString();

    if (selectedText)
    {
        var googleQuery = "http://www.google.com/search?q=" + selectedText;
        alert(googleQuery);
        chrome.tabs.create({"url" : googleQuery});  
        alert(googleQuery);
    }
});

The code works until the line for opening a new tab (the first alert pops up but not the second). I just can't seem to get it working. What am I missing?

share|improve this question

1 Answer

up vote 3 down vote accepted

According to the Google Chrome Content Scripts reference, chrome.tabs (and everything but chrome.extension) is not available to content scripts.

As an alternative, you could try window.open(), or use message passing to let your background page to open the tab.

share|improve this answer
Thx, I useed message passing. It worked like a charm. I can now google selected text only by pressing ctrl+alt+x :) – sklitzz Jan 10 '12 at 22:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.