Questions tagged [chromium]

Chromium is the open source web browser project from which Google Chrome draws its source code.

Chromium is the open source web browser project from which Google Chrome draws its source code.

The project's hourly Chromium snapshots appear essentially similar to the latest builds of Google Chrome aside from the omission of certain Google additions, most noticeable among them being Google's branding, auto-update mechanism, click-through licensing terms, usage tracking, and built-in PDF viewer.

Chromium uses the Blink layout engine.

See

4191 questions
24
votes
2 answers

Which Chrome keyboard shortcuts cannot be overridden with Javascript?

You can preventDefault() on Chrome shortcuts with JavaScript, but you can't do it with all of them. Ctrl + S and Ctrl + F you can override. Ctrl + W you cannot. This makes sense. Ctrl + L though I was surprised to find you also cannot override…
Slbox
  • 10,957
  • 15
  • 54
  • 106
24
votes
1 answer

What are the difference between Chrome, Canary and Chromium?

Here's how I understand the google browser differences: Chrome - Production release (the one we're currently using, stable version) Canary - Test release before new production release (Version prior to Chrome release) Chromium - Dev release and…
Marvin Glenn Lacuna
  • 1,682
  • 1
  • 19
  • 25
24
votes
3 answers

How to integrate Chromium Embedded Framework (CEF) with java

I'd like to make a desktop application to let a website be browsed, I don't want to make a browser but a Browser embeded Application. I've tried with JavaFx but I've found some problems like missing support for plugins (eg: flash, pdf viewer,…
Amogh
  • 4,453
  • 11
  • 45
  • 106
23
votes
0 answers

How to disable the "Chromium didn't shut down correctly" message? Chromium 17, Ubuntu 10.04

I am running Chromium in a kiosk-like environment and if the computer is powered off forcefully while Chromium is running, the next time it boots it will display the message "Chromium didn't shut down correctly. To reopen the pages you had open,…
Daniel M.
  • 3,225
  • 1
  • 22
  • 16
22
votes
8 answers

GNOME Shell integration extension is running, native host connector is not detected?

I have followed these steps while installing the gnome extension of chromium in Ubuntu 20.04. Installed the GNOME Shell integration extension on chromium. As per their documentation ran a command to install chrome-gnome-shell sudo apt-get install…
Digvijay Rathore
  • 637
  • 1
  • 6
  • 21
22
votes
5 answers

Chrome on Linux - query the browser to see what tabs are open?

I am running Chromium (the open source chrome version) on Ubuntu Linux. Can I write a programme to see what tabs I have open? I would like to write a programme to monitor how much time I'm spending on things. Is there a command line programme, some…
Amandasaurus
  • 58,203
  • 71
  • 188
  • 248
22
votes
2 answers

How to use Web Speech API at chromium?

How to use SpeechSynthesisUtterance() and window.speechSynthesis.speak() at chromium browser? var msg = new SpeechSynthesisUtterance( "Hello I am browser" ); window.speechSynthesis.speak( msg ); yields no output at system speakers. Issues with the…
guest271314
  • 1
  • 15
  • 104
  • 177
22
votes
2 answers

Chrome bug with colspan and border?

In the example below, there is a border on top of the right cell. It only appears in Chrome, is it a Chrome bug? HTML / CSS html, body { height: 100%; } table { border-collapse: collapse; width: 100%; height: 100%; } .left { …
no_gravity
  • 579
  • 1
  • 3
  • 14
22
votes
3 answers

Mutation Observers---subtree

I am reading this http://lists.w3.org/Archives/Public/public-webapps/2011JulSep/1622.html and it seems that Chrome's behavior contrasts to specification. If I understood the specs correctly, defining "subtree" for an element means that changes to…
zpavlinovic
  • 1,507
  • 1
  • 17
  • 36
21
votes
0 answers

java.lang.RuntimeException:Illegal meta data value: the child service doesn't exist

The crash occurs on Samsung Galaxy J6+, S7, S8+ and Note9. Android 8 and 9. implementation 'androidx.appcompat:appcompat:1.1.0-rc01' implementation 'com.google.android.gms:play-services-ads:18.1.0' Stack trace Fatal Exception:…
Andriy D.
  • 1,801
  • 12
  • 19
21
votes
1 answer

Selenium use Chromium instead of google-chrome

I first installed Chromium and prepared my Selenium tests to run with it (I have the chromeDriver and I did create the symbolic link google-chrome pointing to chromium-browser). Everything was running smooth. Later I did install the google-chrome…
PauloASilva
  • 1,000
  • 1
  • 7
  • 19
20
votes
5 answers

How can I check if a browser is Chromium-based?

I have a Chrome extension, and I am currently writing a website to advertise it. I know that a Chrome extension can be installed in all Chromium-based browsers (Chrome, Opera, etc.). Is it possible to check if a browser can download the extension…
Fredthedoggy
  • 341
  • 3
  • 12
20
votes
3 answers

Is there a keyboard shortcut to show or hide 'FPS meter' in Chromium versions 60+?

Analyzing an HTML-5 application which makes heavy use of GPU-enabled animations, I would like to constantly check the FPS rate in an environment in which Chrome/Chromium is started with the --kiosk startup flag. Currently, I use Chromium in version…
MWiesner
  • 8,868
  • 11
  • 36
  • 70
19
votes
3 answers

Is there any way to access certificate information from a Chrome Extension

I'd like to access SSL certificate information from a Google Chrome extension. I took a look at the APIs here: http://code.google.com/chrome/extensions/api_index.html, but didn't see anything that would get the job done. Ideally I'd like to get…
19
votes
1 answer

Puppeteer: Chromium instances remain active in the background after browser.disconnect

My environment Puppeteer version: 3.1.0 Platform / OS version: Windows 10 Node.js version: 12.16.1 My problem is: I have a for...of loop to visit 3000+ urls with puppeteer. I use puppeteer.connect to wsEndpoint so I can reuse one browser…
theDavidBarton
  • 7,643
  • 4
  • 24
  • 51