CodeWeavers User-Agent Helper
Easily download installers for Windows applications.
Что такое CodeWeavers User-Agent Helper?
CodeWeavers User-Agent Helper - это расширение Chrome, разработанное https://www.codeweavers.com, и его основная функция - "Easily download installers for Windows applications.".
Снимки экрана расширения
Скачать файл CRX расширения CodeWeavers User-Agent Helper
Скачайте файлы расширений CodeWeavers User-Agent Helper в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
The CodeWeavers User-Agent Helper customizes the user-agent sent to select URLs, allowing you to easily download installers for Windows applications on Mac, Linux, or Chrome OS. The extension currently supports downloads for Microsoft Office products.
Основная информация о расширении
Название | CodeWeavers User-Agent Helper |
ID | cdpcjlkngbjmobjppajnbknpegdbnpbc |
Официальный URL | https://chromewebstore.google.com/detail/codeweavers-user-agent-he/cdpcjlkngbjmobjppajnbknpegdbnpbc |
Описание | Easily download installers for Windows applications. |
Размер файла | 11.82 KB |
Количество установок | 2,412 |
Текущая Версия | 3 |
Последнее Обновление | 2018-08-10 |
Дата публикации | 2018-08-10 |
Рейтинг | 2.14/5 Всего 7 оценок |
Разработчик | https://www.codeweavers.com |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "CodeWeavers User-Agent Helper", "description": "Easily download installers for Windows applications.", "version": "3", "content_scripts": [ { "js": [ "installpage.js" ], "matches": [ "http:\/\/*.codeweavers.com\/*CodeWeaversUserAgent.*", "https:\/\/*.codeweavers.com\/*CodeWeaversUserAgent.*" ] } ], "icons": { "16": "icon16.png", "128": "icon128.png" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "permissions": [ "webRequest", "webRequestBlocking", "*:\/\/*.office.com\/*", "*:\/\/*.microsoft.com\/*" ] } |