Install as App
Turn the current web site into an installable app.
什么是Install as App?
Install as App是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“Turn the current web site into an installable app.”。
扩展截图
下载Install as App扩展crx文件
下载Install as App扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension adds a button to automate creating a shortcut with the "Open in Window" option checked, essentially making it one click to turn a web page into an application in chrome/chromeos.
扩展基本信息
名称 | Install as App |
ID | ilbjnijjaidemeofigoeapbnnplenmaj |
官方URL | https://chromewebstore.google.com/detail/install-as-app/ilbjnijjaidemeofigoeapbnnplenmaj |
简介 | Turn the current web site into an installable app. |
文件大小 | 41.91 KB |
安装次数 | 188 |
当前版本 | 0.1.0 |
更新时间 | 2020-04-07 |
上架时间 | 2020-04-07 |
评分 | 5.00/5 共1次评分 |
开发者 | Unknown |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Install as App", "version": "0.1.0", "description": "Turn the current web site into an installable app.", "icons": { "48": "icon48.png", "128": "icon128.png", "512": "icon512.png" }, "permissions": [ "activeTab", "management" ], "background": { "persistent": false, "scripts": [ "content.js" ] }, "browser_action": { "default_title": "Install current web page as an application." } } |