PhotoRoom Background Remover
Remove the background from an image using the photoroom background remover.
Что такое PhotoRoom Background Remover?
PhotoRoom Background Remover - это расширение Chrome, разработанное PhotoRoom, и его основная функция - "Remove the background from an image using the photoroom background remover.".
Снимки экрана расширения
Скачать файл CRX расширения PhotoRoom Background Remover
Скачайте файлы расширений PhotoRoom Background Remover в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Remove the background from any image online, simply right click and select "Remove Background". From there you can download the result, change the background color, or open the image in the PhotoRoom webapp. Note: This extension does not store any information. By right clicking on the image and selecting "remove background" you submit it directly to https://www.photoroom.com/tools/background-remover.
Основная информация о расширении
Название | PhotoRoom Background Remover |
ID | lokegfgcnpdiambfeddkhgjhpbafbgnh |
Официальный URL | https://chromewebstore.google.com/detail/photoroom-background-remo/lokegfgcnpdiambfeddkhgjhpbafbgnh |
Описание | Remove the background from an image using the photoroom background remover. |
Размер файла | 12.87 KB |
Количество установок | 298 |
Текущая Версия | 1.0 |
Последнее Обновление | 2023-10-24 |
Дата публикации | 2023-10-24 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | PhotoRoom |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://www.photoroom.com |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "PhotoRoom Background Remover", "description": "Remove the background from an image using the photoroom background remover.", "version": "1.0", "permissions": [ "contextMenus", "activeTab", "scripting" ], "background": { "service_worker": "background.js" }, "host_permissions": [ "https:\/\/www.photoroom.com\/" ], "content_scripts": [ { "matches": [ "https:\/\/www.photoroom.com\/background-remover\/*" ], "js": [ "contentV3.js" ] } ], "icons": { "128": "icon128.png", "16": "icon16.png" } } |