Inspecting web app manifests - Firefox Developer Tools 编辑
In this article we will look at inspecting app manifests using the Firefox DevTools Application panel.
When you open the Application panel’s Manifest view on a page that doesn't have an app manifest successfully deployed, you'll get the following output shown:
Deploying a manifest
To get a manifest deployed successfully, you need to include a <link>
element in the <head>
of your document that points to your .webmanifest
file:
<link rel="manifest" href="/manifest.webmanifest">
The .webmanifest
extension is recommended in the spec, and should be served with an application/manifest+json
mime type, although browsers generally tend to support manifests with other appropriate extensions like .json
(mime type: application/json
).
You also need to make sure the JSON inside the file is of the correct format. You can test this using the Web Manifest Validator.
Inspecting your manifest
If your manifest is deployed successfully, you should end up with a display like the following on the Manifest view:
From here, you can inspect all the information in the manifest in an easy-to-digest way, making sure that it is all correct. It provides a link to the manifest file at the top which when clicked on brings up the JSON in a new tab.
It also loads all the icon files into the view, so you can see the relative size of them all, and any other information associated with them.
List of manifest members
We won't provide an exhaustive list of all the members that can appear in a web manifest here; you can already find that in our web manifest documentation.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论