Install as App
Turn the current web site into an installable app.
Vad är Install as App?
Install as App är en Chrome-tillägg utvecklad av Unknown, och dess huvudfunktion är "Turn the current web site into an installable app.".
Tilläggsskärmbilder
Ladda ner Install as App-förlängningens CRX-fil
Ladda ner Install as App-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
Namn | Install as App |
ID | ilbjnijjaidemeofigoeapbnnplenmaj |
Officiell webbadress | https://chromewebstore.google.com/detail/install-as-app/ilbjnijjaidemeofigoeapbnnplenmaj |
Beskrivning | Turn the current web site into an installable app. |
Filstorlek | 41.91 KB |
Antal Installationer | 188 |
Aktuell Version | 0.1.0 |
Senast Uppdaterad | 2020-04-07 |
Publiceringsdatum | 2020-04-07 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | Unknown |
Betalningssätt | free |
Stödda Språk | 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." } } |