SellerLegend Sessions Helper
Extracts sessions data from Seller Central and posts to your SellerLegend account.
SellerLegend Sessions Helper란 무엇입니까?
SellerLegend Sessions Helper은(는) SellerLegend에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Extracts sessions data from Seller Central and posts to your SellerLegend account."입니다.
확장 프로그램 스크린샷
SellerLegend Sessions Helper 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension will only work with SellerLegend, the one-stop Amazon sellers tool. See https://sellerlegend.com for details The extension will download session and converion data from your SellerCentral account to your SellerLegend account. You will need to log on to your SellerCentral account first for the extension to be able to download the data. Please bear in mind that this extension is still under beta testing. In case of issues, please report these to [email protected]. You will find the beta testing instructions here: https://docs.sellerlegend.com/knowledgebase/how-do-i-beta-test-the-sellerlegend-chrome-extension/
확장 프로그램 기본 정보
이름 | |
ID | bjobpingnbebifafdpblklkkjlkgipmi |
공식 URL | https://chrome.google.com/webstore/detail/sellerlegend-sessions-hel/bjobpingnbebifafdpblklkkjlkgipmi |
설명 | Extracts sessions data from Seller Central and posts to your SellerLegend account. |
파일 크기 | 359 KB |
설치 횟수 | 471 |
현재 버전 | 4.0 |
최근 업데이트 | 2021-08-04 |
출시 날짜 | 2020-01-28 |
개발자 | SellerLegend |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://sellerlegend.com |
개인정보 보호 정책 페이지 URL | http://sellerlegend.com/privacy-policy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "SellerLegend Sessions Helper", "version": "4.0", "description": "Extracts sessions data from Seller Central and posts to your SellerLegend account.", "content_scripts": [ { "matches": [ "https:\/\/sellercentral.amazon.com\/*", "https:\/\/sellercentral.amazon.co.uk\/*", "https:\/\/sellercentral.amazon.ca\/*", "https:\/\/sellercentral.amazon.de\/*", "https:\/\/sellercentral.amazon.it\/*", "https:\/\/sellercentral.amazon.es\/*", "https:\/\/sellercentral.amazon.in\/*", "https:\/\/sellercentral.amazon.mx\/*", "https:\/\/sellercentral.amazon.fr\/*", "https:\/\/sellercentral-japan.amazon.com\/*", "https:\/\/sellercentral.amazon.co.jp\/*" ], "js": [ "js\/jquery-3.2.1.min.js", "js\/bootstrap.min.js", "js\/bootstrap-year-calendar.min.js", "js\/content.js" ], "css": [ "css\/sl-styles.css", "css\/bootstrap-year-calendar.min.css" ], "run_at": "document_idle" } ], "icons": { "16": "images\/icons\/sl-16.png", "48": "images\/icons\/sl-48.png", "96": "images\/icons\/sl-96.png", "120": "images\/icons\/sl-120.png", "128": "images\/icons\/sl-128.png", "180": "images\/icons\/sl-180.png" }, "browser_action": { "default_icon": "images\/icon.png", "default_popup": "html\/settings-section.html" }, "externally_connectable": { "matches": [ "*:\/\/*.amazon.com\/*" ] }, "background": { "scripts": [ "js\/jquery-3.2.1.min.js", "js\/FileSaver.js", "js\/messages.js", "js\/config.js", "js\/common.js", "js\/indexed-db.js", "js\/background.js" ] }, "permissions": [ "tabs", "http:\/\/localhost\/*", "*:\/\/*.sellerlegend.com\/", "https:\/\/sellercentral.amazon.com\/", "https:\/\/sellercentral.amazon.co.uk\/", "https:\/\/sellercentral.amazon.ca\/", "https:\/\/sellercentral.amazon.de\/", "https:\/\/sellercentral.amazon.it\/", "https:\/\/sellercentral.amazon.es\/", "https:\/\/sellercentral.amazon.in\/", "https:\/\/sellercentral.amazon.mx\/", "https:\/\/sellercentral.amazon.fr\/", "https:\/\/sellercentral-japan.amazon.com\/", "https:\/\/sellercentral.amazon.co.jp\/", "storage", "notifications", "webRequest" ], "web_accessible_resources": [ "html\/*", "js\/*", "css\/*", "images\/*", "fonts\/*" ], "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'" } |