PhotoRoom Background Remover
Remove the background from an image using the photoroom background remover.
什么是PhotoRoom Background Remover?
PhotoRoom Background Remover是由PhotoRoom开发的Chrome扩展程序,该扩展的主要功能是“Remove the background from an image using the photoroom background remover.”。
扩展截图
下载PhotoRoom Background Remover扩展crx文件
下载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" } } |