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 |
官方網址 | 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" } } |