Install as App
Turn the current web site into an installable app.
Hvad er Install as App?
Install as App er en Chrome-udvidelse udviklet af Unknown, og dens hovedfunktion er "Turn the current web site into an installable app.".
Udvidelsesskærmbilleder
Download Install as App-udvidelses-CRX-fil
Download Install as App-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Install as App |
ID | ilbjnijjaidemeofigoeapbnnplenmaj |
Officiel URL | https://chromewebstore.google.com/detail/install-as-app/ilbjnijjaidemeofigoeapbnnplenmaj |
Beskrivelse | Turn the current web site into an installable app. |
Filstørrelse | 41.91 KB |
Antal Installationer | 188 |
Nuværende Version | 0.1.0 |
Senest Opdateret | 2020-04-07 |
Udgivelsesdato | 2020-04-07 |
Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
Udvikler | Unknown |
Betalingsmetode | free |
Understøttede Sprog | 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." } } |