Questions tagged [google-chrome-os]

This tag is dedicated to questions about Chrome OS.

Chromium OS is an open-source project that aims to build an operating system that provides a fast, simple, and more secure computing experience for people who spend most of their time on the web.

One of the popular usage is on Chromebook - http://www.google.com/chromebook/

For more details: http://www.chromium.org/chromium-os

517 questions
2
votes
0 answers

Find Bluez btmon Tool Documentation for Chromium (or even Linux)

I must be slow of wit today, because I cannot find any documentation on using btmon (Bluetooth Monitor?) on Chromium. I know it exists, as issues surrounding it usage have been logged on the chromium group website. After exploring the Bluez site and…
Scott Conover
  • 1,421
  • 1
  • 14
  • 27
1
vote
1 answer

Google chrome os and nativeclient code

In Chrome it is possible to write native code and have it run in the browser using the Native Client SDK. Is it possible to do this in ChromeOS? And is it possible to create a TCP or UDP binary socket in native client code?
avid
  • 579
  • 5
  • 18
1
vote
1 answer

VSCode terminal taking two keyboard inputs when only one key is pressed on keyboard

In the vscode terminal bash if i press a key it takes two inputs. For example if I press 'a' the terminal shows 'aa' and this happens for all the keys. But it doesn’t happen on the default terminal. I'm using dual boot windows 11 with fyde os. On…
1
vote
1 answer

KeyguardManager, BiometricManager from Android API in ChromeOS

We're developing the app for Android, but we expect it to work in ChromeOS too. And it does work, except one of our latest features brings false negatives. All KeyguardManager methods return false. For example…
Anton Shkurenko
  • 4,301
  • 5
  • 29
  • 64
1
vote
1 answer

ChromeOS kiosk limitations: bypass framekiller

I'm developing a ChromeOS kiosk application (website + chrome extension) which suppose to run in Kiosk Mode on managed Chromebook devices. Application displays external web content which I don't own, I'm using sandboxed iframes to display that web…
1
vote
2 answers

How to install Golang on chrome os

I tried the method from https://go.dev/doc/install and I keep getting "-bash: go: command not found". I tried https://gist.github.com/conoro/4fca191fad018b6e47922a21fab499ca but I dont know what command to run when I get to the "Use sftp or scp on…
1
vote
1 answer

Spacemacs warnings after upgrade Debian 10 to 11 on Chromebook

I'm using Spacemacs on a Chromebook using the Linux environment. I had a notification indicated me that a new version of Debian was available, and I launched the upgrade. After that, when launching emacs with Spacemacs, it is written found 6 new…
AreTaro
  • 31
  • 4
1
vote
0 answers

how to make flutter app support for chrome OS

Currently having a flutter app with android And IOS support, how to make this app support for chrome book OS also. Already its working fine with responsive screen but the issues is the app is flickers in so many places.
Aj_
  • 11
  • 1
1
vote
1 answer

Can't run debugging in Visual Studio Code on Chrome OS

How do I run a .html file in VS Code on Chrome OS? It sais I need to add the absolute path to browser in a Json file. Trying to open a .html file in VS Code on Chrome OS
1
vote
0 answers

Can Android app on ChromeOS create a KeyPair that is at least SECURITY_LEVEL_TRUSTED_ENVIRONMENT?

I'm trying to find out if creating hardware backed secure keys are possible inside an Android app running on a Chromebook. I'm asking because to my knowledge, all Android apps on ChromeOS runs on some kind of virtualised environment and might not…
1
vote
0 answers

Dynamic link on ChromeOS

I am trying to open my application via Firebase Dynamic Link on ChromeOS, however it's not opening the application when I try to access it via Chromebrowser. Is there any way to make it work on ChromeOS, if not then would it be possible to implement…
1
vote
0 answers

How to test ChromeOS enterprise features during development?

I am working on a Chrome extension running on Chrome OS. The extension needs the enterprise.hardwarePlatform permission to be able to get hardware information about the device. The question is: How can I test my extension? After installing the…
1
vote
0 answers

PyQt6 on ChromeOS (Without dev) using pyqtdeploy?

I wanna make an app that supports as many OS as possible(Windows, iOS, macOS, ChromeOS) so I'm trying out PyQt6 but also need it to work on a Chrome OS WITHOUT DEVELOPER MODE. With my experience with chromebooks, some apps in the play store…
1
vote
1 answer

keyboard event has key="Process" on Chromebook

I'm working on a text editor and I'm facing a weird behavior on Chromebooks. When they press a composition key (like ` or ^), I receive a keyDown event with key="Process". This is documented nowhere. It doesn't follow the specs, and I couldn't find…
Sharcoux
  • 5,546
  • 7
  • 45
  • 78
1
vote
1 answer

Can we give pyautogui permission to I/O (Mouse and keyboard) in Chromebooks?

I am using a Chromebook to code python. I made a script which makes it so that it looks up something in google. This is the current code: import pyautogui as pag import time time.sleep(3) pag.typewrite('is that a tomato?',…
user18553769