Background Remover

Removes background from images

Background Remover란 무엇입니까?

Background Remover은(는) theswagdevteam에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Removes background from images"입니다.

확장 프로그램 스크린샷

screenshot

Background Remover 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This is a Chrome extension which automatically removes the background of an image you want to paste into PowerPoint for example. If the background has slightly differing colors, you can adjust the accuracy.
The extension opens a new tab with the modified image. Originally, I wanted to make it copy it directly to clipboard, but the API for that is not really finished yet.

This is my first extension and I know it is not perfect yet, so come at me with any approvement requests :)                    

확장 프로그램 기본 정보

이름 Background Remover Background Remover
ID ajampfiaddpgbljhlhaobkiaadncgdnm
공식 URL https://chrome.google.com/webstore/detail/background-remover/ajampfiaddpgbljhlhaobkiaadncgdnm
설명 Removes background from images
파일 크기 173 KB
설치 횟수 4,000
현재 버전 2.1
최근 업데이트 2020-05-11
출시 날짜 2020-05-10
평점 2.00/5 총 5 개의 평점
개발자 theswagdevteam
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Background Remover",
    "version": "2.1",
    "manifest_version": 2,
    "description": "Removes background from images",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "contextMenus",
        "activeTab",
        "tabs",
        "storage"
    ],
    "web_accessible_resources": [
        "page.html",
        "content.js",
        "settings.js"
    ],
    "browser_action": {
        "default_title": "Background Remover",
        "default_popup": "settings.html"
    },
    "icons": {
        "16": "icon\/icon16.png",
        "24": "icon\/icon24.png",
        "32": "icon\/icon32.png",
        "64": "icon\/icon64.png",
        "128": "icon\/icon128.png"
    }
}