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."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ 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 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"
    }
}