Install as App
Turn the current web site into an installable app.
Что такое Install as App?
Install as App - это расширение Chrome, разработанное Unknown, и его основная функция - "Turn the current web site into an installable app.".
Снимки экрана расширения
Скачать файл CRX расширения Install as App
Скачайте файлы расширений 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." } } |