Userlane
The Navigation System for software that allows anybody to use any application instantly
Что такое Userlane?
Userlane - это расширение Chrome, разработанное https://userlane.com, и его основная функция - "The Navigation System for software that allows anybody to use any application instantly".
Снимки экрана расширения
Скачать файл CRX расширения Userlane
Скачайте файлы расширений Userlane в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Access the Userlane Digital Adoption platform on top of any underlying app to get the fastest and most relevant contextual help, right when you need it.
Основная информация о расширении
Название | Userlane |
ID | oaienfpdbimabhlgjlbdpocbogaijnam |
Официальный URL | https://chromewebstore.google.com/detail/userlane/oaienfpdbimabhlgjlbdpocbogaijnam |
Описание | The Navigation System for software that allows anybody to use any application instantly |
Размер файла | 949 KB |
Количество установок | 200,000 |
Текущая Версия | 23.7.2 |
Последнее Обновление | 2024-02-23 |
Дата публикации | 2020-03-31 |
Рейтинг | 5.00/5 Всего 49 оценок |
Разработчик | https://userlane.com |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://userlane.com |
URL страницы помощи | https://userlane.com |
URL страницы политики конфиденциальности | https://www.userlane.com/privacy |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Userlane", "manifest_version": 2, "description": "The Navigation System for software that allows anybody to use any application instantly", "homepage_url": "https:\/\/userlane.com\/", "icons": { "128": "commonAssets\/icons\/userlane_icon_128.png" }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "browser_action": { "default_icon": "commonAssets\/icons\/userlane_icon_128.png", "default_title": "Userlane Extension", "default_popup": "popup\/index.html" }, "storage": { "managed_schema": "commonAssets\/config\/managed_schema.json" }, "background": { "scripts": [ "background\/background.js" ], "persistent": true }, "options_page": "options\/index.html", "externally_connectable": { "matches": [ "*:\/\/*.usln.rocks\/*", "*:\/\/*.userlane.com\/*" ] }, "permissions": [ "https:\/\/*\/*", "http:\/\/*\/*", "tabs", "storage" ], "web_accessible_resources": [ "snippets\/*" ], "content_scripts": [ { "matches": [ "*:\/\/*.usln.rocks\/*", "*:\/\/*.userlane.com\/*" ], "js": [ "snippets\/intentpagecontentscript.js" ] } ], "version": "23.7.2" } |