Copy Image without Background
Right-click and copy images without their background using remove.bg.
Copy Image without Background란 무엇입니까?
Copy Image without Background은(는) kaimer.b.raven에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Right-click and copy images without their background using remove.bg."입니다.
확장 프로그램 스크린샷
Copy Image without Background 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Right-click an image and have its background removed! Just like that! ※※※WARNING※※※ The extension will NOT work without YOUR API key. Instructions on "How" to obtain your API key as well as "Where" to input it, are located in the EXTENSION OPTIONS. 1. Go to "chrome://extensions" 2. Find this extension and click "Details" 3. Click on "Extension Options" 4. Follow the instructions. Once the API key is set, all you have to do is "Copy without BG"!! Note that remove.bg has a limit of 50 free background removals per API Key per month. Refer to https://www.remove.bg/api#remove-background for any limitations that may be placed by "remove.bg" or, if you would like to increase its limit. If you purchase credits over at remove.bg, I get nothing. I'm not making any profit from this extension, nor do I intend to. I am just a game developer who is interested in making chrome extensions with ChatGPT. (yes this extension along the option html and everything, was created using ChatGPT) I am in no way affiliated with open.ai nor remove.bg. All credits belong to where they are due at their respective parties. In my case, maybe some Kudos for debugging and coming up with the idea lol No user data is being transmitted to me, or open.ai. How your image is being handled over at remove.bg, I have no idea. Refer to their API documentation. Thanks for reading thus far, and have a nice day!
확장 프로그램 기본 정보
이름 | Copy Image without Background |
ID | lolilkegggncbhlfgfdjlmelmgmpikgk |
공식 URL | https://chromewebstore.google.com/detail/copy-image-without-backgr/lolilkegggncbhlfgfdjlmelmgmpikgk |
설명 | Right-click and copy images without their background using remove.bg. |
파일 크기 | 12.77 KB |
설치 횟수 | 122 |
현재 버전 | 1.1 |
최근 업데이트 | 2023-04-25 |
출시 날짜 | 2023-04-22 |
평점 | 1.00/5 총 1 개의 평점 |
개발자 | kaimer.b.raven |
이메일 | [email protected] |
결제 유형 | free |
도움말 페이지 URL | https://www.remove.bg/ |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Copy Image without Background", "version": "1.1", "description": "Right-click and copy images without their background using remove.bg.", "permissions": [ "activeTab", "contextMenus", "scripting", "storage" ], "icons": { "48": "icon48.png", "128": "icon128.png" }, "background": { "service_worker": "background.js" }, "action": { "default_icon": { "48": "icon48.png", "128": "icon128.png" } }, "options_page": "options.html" } |