Install as App
Turn the current web site into an installable app.
What is Install as App?
Install as App is a Chrome extension developed by Unknown, and its main feature is "Turn the current web site into an installable app.".
Extension Screenshots
Download Install as App Extension CRX File
Download Install as App extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Install as App |
ID | ilbjnijjaidemeofigoeapbnnplenmaj |
Official URL | https://chromewebstore.google.com/detail/install-as-app/ilbjnijjaidemeofigoeapbnnplenmaj |
Description | Turn the current web site into an installable app. |
File Size | 41.91 KB |
Installation Count | 188 |
Current Version | 0.1.0 |
Last Updated | 2020-04-07 |
Publish Date | 2020-04-07 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Unknown |
Payment Type | free |
Supported Languages | 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." } } |