Questions tagged [google-chrome]

[google-chrome] is for questions related to development with Google Chrome, a web browser that uses the Blink rendering engine. Warning! General support for the browser is off-topic: questions about using or configuring the browser should be posted on https://superuser.com. Chrome OS and Chromium are off-topic: questions about [google-chrome-os] or [chromium] should use those tags.

Google Chrome is a free desktop browser that uses the Blink rendering engine (a fork of WebKit) and V8 JavaScript engine. It was launched in 2008 with a goal of making the web faster.


Tag alert! General usage questions about Chrome should be asked on Super User.
The tags below should be used on questions about development in the following areas:

for Packaged Apps development in Chrome/Chromium
for extension development in Chrome/Chromium
for DevTools in Chrome/Chromium


Most of Chrome's source code is released as part of the open-source sister project Chromium. It was assembled from 25 different code libraries from Google and third parties such as Mozilla's Netscape Portable Runtime, Network Security Services, as well as and a number of other open-source projects.

is available in 53 languages and was first publicly released for Microsoft Windows (XP and later versions) on September 2, 2008, in 43 languages, officially a beta version.


Platforms

Chrome is available for:

  • Windows: Vista / 7 / 8 / 10
    (Windows XP is no longer supported: Chrome 49 is the last compatible version)
  • OS X: 10.6 or later
  • Linux: Ubuntu 12.04 or later / Debian 7 or later / openSUSE 12.2 or later / Fedora 17 or later
  • iOS 7.0 or later (iPhone, iPod touch, and iPad)
  • Android 4.0 or later
  • Google TV

References

71967 questions
28
votes
3 answers

Detecting JavaScript errors in Chrome

Chrome does not appear to give any indication that a page has JavaScript errors, unless you open up the JavaScript Console to check. Is there any way to have an indication that there were errors, and then automatically open the JavaScript Console?…
ghenne
  • 1,903
  • 2
  • 19
  • 29
28
votes
1 answer

Key events are not raised when escape key is pressed on a focused element

I want to know when the Esc key is pressed on an input element. On Chrome 47.0.2526.106 m, the Esc key removes the focus, but JavaScript cannot catch the keyup, keydown, or keypress events. Demo:…
Gqqnbig
  • 5,845
  • 10
  • 45
  • 86
28
votes
14 answers

How to open a link in new tab (chrome) using Selenium WebDriver?

System.setProperty("webdriver.chrome.driver", "D:\\softwares\\chromedriver_win32\\chromedriver.exe"); WebDriver driver = new ChromeDriver(); driver.manage().timeouts().implicitlyWait(10,…
nlogn
  • 1,034
  • 4
  • 11
  • 17
28
votes
2 answers

How to detect page navigation on YouTube and modify its appearance seamlessly?

I'm making a simple Chrome extension to add up the length of each video in a YouTube playlist and insert the total length in the page. I've succeeded at that, but my script only works after refreshing a page but not when the site is navigated.…
Lauren
  • 883
  • 2
  • 9
  • 7
28
votes
3 answers

Chrome extension (made according to official tutorial) not working

https://developer.chrome.com/extensions/getstarted Is this tutorial still ok? I've downloaded all metioned files and the extension is not working. I think there is a problem connected with Ajax request. I got the message: Cannot display image. No…
Marek Marczak
  • 532
  • 8
  • 14
28
votes
4 answers

Is it possible to make the chrome snippet auto run?

I have created some javascript code which searches the DOM and exposes some information for myself in the console, but in order this to work every time I have to go to Sources part of the console, go to the snippets part, click on the snippet name…
funguy
  • 2,072
  • 7
  • 30
  • 41
28
votes
2 answers

How to get Chrome History & Bookmarks in Android Marshmallow (API>=23)?

Till API Level 22 (i.e. till Lollipop), there has been a way to read History and Bookmarks from the Chrome app (as shown in this thread) using the permission com.android.browser.permission.READ_HISTORY_BOOKMARKS. Now, in Android API=23 Marshmallow,…
28
votes
5 answers

chrome canvas inspector 2015

I used this nifty feature that chrome had for quite a while called "canvas inspector". It was an experimental dev feature that had to manually be enabled. It was quite helpful when working with webgl via something like THREE.js where you can…
pailhead
  • 5,162
  • 2
  • 25
  • 46
28
votes
3 answers

How to enable mDNS support in android browser address bar

How to get mDNS names (test.local) resolve to ip address in Android Chrome browser at address bar ? In windows after installing Bonjour service it works in Chrome browser. Is there similar service which can be activated in Android. mDNS…
hrsavla
  • 281
  • 1
  • 3
  • 3
28
votes
12 answers

net::ERR_INCOMPLETE_CHUNKED_ENCODING nginx

I have 2 RoR web applications hosted on 2 different servers. For one particular page, the request is served from the second application. For rest of the pages, the request is served from the main application. Nginx settings for the main…
pramodtech
  • 6,300
  • 18
  • 72
  • 111
28
votes
2 answers

history.replaceState still adds entries to the "Browsing History"

Specifically, calling the following snippet of code: history.replaceState(undefined, undefined, "#" + value) will correctly not affect the back button behavior of the current page, but will add an entry to the "browsing history" page, which I don’t…
Vincent Woo
  • 2,650
  • 1
  • 20
  • 21
28
votes
6 answers

Forcing an HTTP request to fail in browser

Is it possible to make an http request that has been sent to a server by the browser fail without having to alter the javascript? I have a POST request that my website is sending to the server and we are trying to test how our code reacts when the…
Peter Maidens
  • 443
  • 1
  • 6
  • 11
28
votes
5 answers

How to apply CSS to a Mac Chrome Select Box?

Doesn't matter what I do, using Mac OSX 10.9.2 and Chrome Version 33.0.1750.152, padding, background-color, nothing works. I am really just wanting to apply a padding-top and padding-bottom of 5px on a select element, works everywhere cept Chrome…
Solomon Closson
  • 6,111
  • 14
  • 73
  • 115
28
votes
3 answers

Slow down browser rendering

Is there a way to slow down browser DOM rendering and JS execution for development so we can see which parts of the website are too JS intensive and might be slow on slower machines? Maybe an extension for Chrome/Firefox for Linux/OSX? Some…
ddofborg
  • 2,028
  • 5
  • 21
  • 34
28
votes
2 answers

Live reload JavaScript in Chrome

I know you can live-edit JS from within the Source panel of Chrome Developer Tools, and I know there are systems for live-reloading of CSS, but can you live-reload JS from the source location (either a URL or local disk, or leveraging Workspaces…
Yang
  • 16,037
  • 15
  • 100
  • 142