Background Remover

Removes background from images

什麼是Background Remover?

Background Remover是由theswagdevteam開發的Chrome擴展程式,該擴展的主要功能是“Removes background from images”。

擴展截圖

screenshot

下載Background Remover擴展crx文件

下載Background Remover擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

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