copy / v86

x86 PC emulator and x86-to-wasm JIT, running in the browser
https://copy.sh/v86/
BSD 2-Clause "Simplified" License
19.78k stars 1.4k forks source link

[Feature Idea] Any plans to create a ChromeOS app on the Web Store? #194

Open skylar-eng opened 6 years ago

skylar-eng commented 6 years ago

Do you have any plan to put this on the ChromeOS Web Store in the future? Maybe with the ability to work without an internet connection?

BelleNottelling commented 6 years ago

This can be done easily! I did it just using the tutorial here: https://developer.chrome.com/apps/first_app

manifest.json:

{
  "name": "v86!",
  "description": "v86 for Chrome Apps",
  "version": "0.1",
  "manifest_version": 2,
  "app": {
    "background": {
      "scripts": ["showapp.js"]
    }
  }
}

loadapp.js:

chrome.app.runtime.onLaunched.addListener(function() {
  chrome.app.window.create('index.html', {
    'outerBounds': {
      'width': 1920,
      'height': 1080
    }
  });
});
BelleNottelling commented 6 years ago

@copy Would you be interested in a PR?

copy commented 6 years ago

Would you be interested in a PR?

Thanks for the offer, but I don't think those files need to be in the repo.

I think a first step would be to make v86 work offline (like some websites do).

sr229 commented 6 years ago

@copy this could be done using Service Workers, as #219 would complement that

sr229 commented 6 years ago

ChromeOS apps will be deprecated soon - consider closing this issue.

hello-smile6 commented 2 years ago

Would you be interested in a PR?

Thanks for the offer, but I don't think those files need to be in the repo.

I think a first step would be to make v86 work offline (like some websites do).

I'll work on that using Workbox.

hello-smile6 commented 2 years ago

ChromeOS apps will be deprecated soon - consider closing this issue.

Time for a PWA, then.

KC3WMI commented 2 years ago

ChromeOS apps will be deprecated soon - consider closing this issue.

Maybe put it on the Play Store?

sr229 commented 1 year ago

ChromeOS apps will be deprecated soon - consider closing this issue.

Time for a PWA, then.

PWA works in this case then! Although we do need to make the UI a bit more intuitive.

BobStadler commented 1 month ago

@sr229 how is the pwa going? or is it just a speculation for now?