Questions tagged [google-chrome-app]

Don't use this tag for PWA or the Chrome app/binary itself! Use this tag only for apps built using Chrome App specification. Just like web apps, Chrome Apps are written in HTML5, JavaScript, and CSS, yet they look and behave like native apps, and they have native-like capabilities that are much more powerful than those available to web apps.

Note: Chrome Apps are to be discontinued by early 2018 for Windows, Mac, and Linux. However, they will still be supported on Chrome OS.

Google Chrome Apps deliver an experience as capable as a native app, but as safe as a web page. Just like web applications, Chrome Apps are written in HTML5, JavaScript, and CSS. But Chrome Apps look and behave like native applications, and they have native-like capabilities that are much more powerful than those available to web applications.

Chrome Apps are distinct from Chrome Extensions; use the tag if you want to ask a question about Chrome extensions.

Note: Chrome for mobile platforms ("Chrome app") is not covered by this tag. Use the tag for questions regarding mobile Chrome.

Chrome Apps have access to Chrome APIs and services not available to traditional web sites. You can build powerful apps that interact with network and hardware devices, media tools, and much more. Here's a short list of examples:

Working samples and examples can be found on GitHub as well as a step-by-step guide.

The term "Chrome app" used to refer to legacy "packaged apps", which is deprecated in favour of Chrome apps.

2527 questions
0
votes
0 answers

Chrome Extension setBadgeText doesn't work

Cannot read properties of undefined (reading 'setBadgeText') is the Error messages i get when I try to trigger a Hotkey Event Here is my Manifest: { "name": "Command demo - basic", "version": "1.0", "manifest_version": 3, …
0
votes
0 answers

Chrome extension: calling event with onUpdated.addListener causes infinite refresh

I called the event handler whenever onUpdated in service_worker. service_worker.js chrome.tabs.onUpdated.addListener((tabId, changeInfo, tab) => { if(changeInfo.status === 'complete' && tab.url) { const domain =…
0
votes
1 answer

Clear storage data from popup when close browser

I want develop ( Chrome Extension with ) a popup with persistent data when close popup, but I want delete storage data when close browser. This example save current status of button [start/stop] , but I want reset storage data when close the…
0
votes
1 answer

Chrome apps: Will Chrome apps work on older versions of Chrome after December 2022?

Google has decided to end the ability to open the Chrome apps on Windows and MacOS after December 2022. My question is if they will work on older versions of Chrome?
0
votes
0 answers

Solution for Chrome app not supporting after December 2022

I do have a Chrome app with following functionality. The app communicate with another program which is running in the company network in a bi-directional manner. (It is a bi-directional communication with a medical analyzer). I have used…
0
votes
1 answer

Chrome.usb is now api for chrome app or extension?

I found the api in chrome extension docs which reads the api is deprecated chrome app platform. Does this mean the api is accessible for chrome extension now? However, it seems something goes wrong when I take it as an extension api.
Arthur
  • 63
  • 1
  • 8
0
votes
1 answer

Chrome extension, how to track each visited page?

I wanted to build a Google Chrome extension that would display domain popularity, the way Alexa domain stats did; I am able to display any data inside popup.html when user clicks my extension button (to show domain rank, backlinks, etc) but in…
0
votes
1 answer

Chrome Native Messaging - Host App should be packed with extension?

I am new to Chrome Extension. I have a project to create a chrome extension that can help our web app to communicate with other team's desktop applications. So I know I need to use native messaging, so I need to create a native host. But I am…
0
votes
1 answer

How can I bypass print preview from a Google Apps Script Web App?

I am creating a Google Apps Script Web App where I want to automatically print labels when a user submits information via a Submit button (whilst also recording the information). I can display the label as a html webpage and use window.print() to…
0
votes
1 answer

Google play not allowing HP Chromebook 14 G5

I received an email from a client saying one of our apps only installs on "some" chromebooks but not on the HP Chromebook 14 G5. I checked…
0
votes
0 answers

How to I show the bookmarks bar and shortcuts in my Chrome new tab extension

i am creating a custom chrome new tab page. However when my extension is in use. Chrome fails to show the bookmarks bar. But when I disable my simple extension it shows up again. Is there a way to show the bookmarks bar in my new tab chrome…
UVic
  • 1,671
  • 3
  • 14
  • 21
0
votes
1 answer

Pair Classic Bluetooth from a Chrome App using chrome.bluetooth and chrome.bluetoothSocket APIs

Ok so I'm trying to connect a bluetooth keyboard through a Chrome App. I was able to use this code and it has a status in the system tray as paired but I can't receive the data input from the keyboard. Example when I typed something in the text area…
jahmir
  • 25
  • 3
0
votes
0 answers

How to send auth cookie from my Chrome extension to my server, when this cookie was set on a website?

When the user logs through my website (running on localhost:3000), my server (running on localhost:8080) sends back a session cookie and this cookie keeps the user logged in. app.use(cookieSession({ name: "my-session", secret:…
0
votes
1 answer

How Can I Fix Glitchy Images on Google Chrome?

I would like to ask about these images I found to be glitchy on google chrome. I must confirm that none of these are intentional. This started since I saw a glitchy image on my google classroom, here are some images I found to be glitchy. I don't…
ChronoAero
  • 135
  • 1
  • 8
0
votes
1 answer

javascript : How to handle chage event handler for multiple checkbox in single function and print whick checkbox clicked

Description i have multiple checkbox and want handle all checkbox click event in single handler function and want to know which is checked.i tried below code and not working document.addEventListener('DOMContentLoaded', function () { …