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
公式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"
    }
}