Is there a way to use chrome API to detect the language of the current content in the current tab?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

Use the Chrome Tabs API to select the current tab, then get the language.

Sample usage:

//Get language of current tab
chrome.tabs.getSelected(null, function(tab) {
  chrome.tabs.detectLanguage(tab.id, function(language) {
    console.log(language);
  });
});
link|improve this answer
1  
The tabId parameter of detectLanguage is optional (undefined can be passed in), so there's no need to use getSelected. – Mihai Parparita Oct 5 '11 at 1:21
where does this code go?, it prints the language in the console then? – Max Oct 5 '11 at 11:26
@Max The code goes anywhere you can use the chrome.tabs, such as a background page. This sample prints in the console. – Digital Plane Oct 5 '11 at 21:08
feedback

Yes: chrome.tabs.detectLanguage. See http://code.google.com/chrome/extensions/tabs.html#method-detectLanguage.

link|improve this answer
where does this code go?, it prints the language in the console then? – Max Oct 5 '11 at 12:13
feedback

Your Answer

 
or
required, but never shown

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