Profit Genie
This extension will analyze google products
Profit Genie란 무엇입니까?
Profit Genie은(는) vaival-chrome-developers에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension will analyze google products"입니다.
확장 프로그램 스크린샷
Profit Genie 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Profit Genie Chrome Extension Profit Genie helps sellers to find out best selling opportunities on google shopping. It shows products potential's stats like number of sales, estimated revenue, # of review and ratings from each product etc... which could help sellers to take decision on the product. Even though seller will be able to see the potential profit an estimated margin.
확장 프로그램 기본 정보
이름 | Profit Genie |
ID | hlnddbinpplgecdbgpmjjcbbcleokmgj |
공식 URL | https://chromewebstore.google.com/detail/profit-genie/hlnddbinpplgecdbgpmjjcbbcleokmgj |
설명 | This extension will analyze google products |
파일 크기 | 2.46 MB |
설치 횟수 | 2,671 |
현재 버전 | 1.8 |
최근 업데이트 | 2022-11-08 |
출시 날짜 | 2021-03-18 |
평점 | 5.00/5 총 17 개의 평점 |
개발자 | vaival-chrome-developers |
이메일 | [email protected] |
결제 유형 | free |
개인정보 보호 정책 페이지 URL | https://cartzy.com/privacy?flux_sess=0f020e80354392ed661370b406122e04&flux_hid=1707945035503568009 |
지원되는 언어 | en-US |
manifest.json | |
{ "manifest_version": 2, "version": "1.8", "name": "Profit Genie", "description": "This extension will analyze google products", "browser_action": { "default_icon": "images\/icons\/icon-48.png", "default_popup": "INDEX.html", "default_title": "Profit Genie" }, "background": { "scripts": [ "js\/BACKGROUND.js" ] }, "icons": { "16": "images\/icons\/icon-16.png", "48": "images\/icons\/icon-48.png", "128": "images\/icons\/icon-48.png" }, "permissions": [ "storage", "background", "cookies", "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "web_accessible_resources": [ "images\/*.jpeg" ], "content_scripts": [ { "all_frames": false, "js": [ "js\/jquery.js", "js\/bootstrap.min.js", "js\/jquery.dataTables.js", "js\/dataTables.buttons.min.js", "js\/html2canvas.min.js", "js\/FileSaver.js", "js\/bootstrap-switch.js", "js\/toastr.min.js", "js\/AJAXq.js", "js\/ContentScript.js" ], "matches": [ "*:\/\/www.google.com\/*" ], "run_at": "document_end" } ] } |