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 |
Eメール | [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" } } |