Include pages in ChromeApp

Asked 1 years ago, Updated 1 years ago, 87 views

http://goo.gl/dt5ZWv

Using this site as a reference, I understand how to create an icon in the chrome app list and click to go to the designated site, but is there a way to move the function to the designated site to index.html with manifest.json?

First of all,

"app":{
      "urls": [
        "index.html"
      ],
  "launch": {
        "web_url": "index.html"
      }
  },

I tried to rewrite it like this, but it didn't work at all.

I would appreciate it if you could let me know if you know how to do it or if it is impossible.

I look forward to your kind cooperation.

google-chrome-apps

2022-09-30 20:52

1 Answers

The html page is displayed when you start it, which is exactly official site tutorial, so if you copy it as it is, you will be able to get the desired behavior.

I searched and found that some people gave the same explanation in Japanese, so I think this is also helpful.
Create ChromeApps-Chrome Apps (Packaged Apps Edition) - Qiita


2022-09-30 20:52

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.