v86 icon indicating copy to clipboard operation
v86 copied to clipboard

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

Open skylar-eng opened this issue 6 years ago • 9 comments

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?

skylar-eng avatar Feb 15 '18 20:02 skylar-eng

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 avatar Feb 16 '18 00:02 BelleNottelling

@copy Would you be interested in a PR?

BelleNottelling avatar Feb 16 '18 00:02 BelleNottelling

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).

copy avatar Feb 20 '18 00:02 copy

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

sr229 avatar Aug 08 '18 02:08 sr229

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

sr229 avatar Aug 10 '18 11:08 sr229

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 avatar Jan 05 '22 20:01 hello-smile6

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

Time for a PWA, then.

hello-smile6 avatar Jan 05 '22 20:01 hello-smile6

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

Maybe put it on the Play Store?

Spaceboy10 avatar Jul 18 '22 20:07 Spaceboy10

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.

sr229 avatar Nov 28 '22 07:11 sr229