Is there a way to use chrome API to detect the language of the current content in the current tab?
相关问题
- Browsers render final comma of right-to-left (rtl)
- Chrome dev tools exact computed value for CSS rule
- Change Chromium icon and “chrome” text to custom i
- debugging webgl in chrome
- Shadow DOM CSS Styling from outside is not working
相关文章
- Is there a way to hide the new HTML5 spinbox contr
- Google Chrome Cache
- how to download a file on Chrome without auto rena
- Do all browsers on iOS use WKWebview or UIWebVIew?
- Why does Google Chrome NOT use cached pages when I
- Calling Chrome web browser from the webbrowser.get
- Progressive web app(PWA) vs Electron vs Browser ex
- Stop automatic scrolling on page content change
Use the Chrome Tabs API to select the current tab, then get the language.
Sample usage:
Yes:
chrome.tabs.detectLanguage
. See http://code.google.com/chrome/extensions/tabs.html#method-detectLanguage.