VIEWTEST - Amazon Image Testing Tool
The testing tool will allow the user to enter their own product main picture and to see it as if it was selling on amazon.
VIEWTEST - Amazon Image Testing Tool란 무엇입니까?
VIEWTEST - Amazon Image Testing Tool은(는) ViewTest - Amazon Image Testing Tool에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The testing tool will allow the user to enter their own product main picture and to see it as if it was selling on amazon."입니다.
확장 프로그램 스크린샷
VIEWTEST - Amazon Image Testing Tool 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Viewtest helps Amazon eCommerce sellers to test their products before their initial launch and diminish any uncertainty by requesting their targeted audience for feedback. Our platform lets you Simulate and test your product Image, pricing, ratings, and title against competitors.
확장 프로그램 기본 정보
이름 | VIEWTEST - Amazon Image Testing Tool |
ID | ekcgofjdeaedfkakldlgmcbgflnmkhma |
공식 URL | https://chromewebstore.google.com/detail/viewtest-amazon-image-tes/ekcgofjdeaedfkakldlgmcbgflnmkhma |
설명 | The testing tool will allow the user to enter their own product main picture and to see it as if it was selling on amazon. |
파일 크기 | 590 KB |
설치 횟수 | 2,310 |
현재 버전 | 4.4.6 |
최근 업데이트 | 2022-04-26 |
출시 날짜 | 2020-07-08 |
평점 | 5.00/5 총 9 개의 평점 |
개발자 | ViewTest - Amazon Image Testing Tool |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://viewtest.com |
도움말 페이지 URL | https://viewtest.com/contact-us |
개인정보 보호 정책 페이지 URL | https://viewtest.com/privacy-policy |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "VIEWTEST - Amazon Image Testing Tool", "description": "The testing tool will allow the user to enter their own product main picture and to see it as if it was selling on amazon.", "version": "4.4.6", "background": { "persistent": true, "scripts": [ "js\/jquery.min.js", "js\/background.js" ] }, "browser_action": { "default_icon": "icons\/128.png" }, "icons": { "256": "icons\/256.png", "128": "icons\/128.png", "16": "icons\/16.png", "48": "icons\/48.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.amazon.com\/*", "*:\/\/*.amazon.de\/*", "*:\/\/*.amazon.co.uk\/*", "*:\/\/*.amazon.in\/*", "*:\/\/*.amazon.it\/*", "*:\/\/*.amazon.fr\/*", "*:\/\/*.amazon.ca\/*", "*:\/\/*.amazon.co.jp\/*", "*:\/\/*.amazon.es\/*", "*:\/\/*.amazon.com.mx\/*", "*:\/\/*.amazon.com.br\/*", "*:\/\/*.amazon.com.au\/*", "*:\/\/*.amazon.ae\/*", "*:\/\/*.amazon.com.tr\/*", "*:\/\/*.amazon.sg\/*", "*:\/\/*.amazon.se\/*" ], "js": [ "js\/jquery.min.js", "js\/script.js", "js\/mutations.js" ], "css": [ "css\/content_script.css", "css\/devices.min.css", "css\/phone-frame.css" ], "run_at": "document_end" }, { "matches": [ "*:\/\/*.viewtest.com\/*", "http:\/\/localhost:3000\/*" ], "js": [ "js\/script2.js" ], "run_at": "document_start" } ], "permissions": [ "activeTab", "storage", "downloads", "*:\/\/www.amazon.com\/", "*:\/\/localhost\/", "https:\/\/viewtest.com\/*", "webRequest", "webRequestBlocking", "webNavigation" ], "web_accessible_resources": [ "popup.html", "product_popup.html", "poll.html", "checkout.html", "thanks.html", "images\/*", "js\/phone-controls.js" ], "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/viewtest.us6.list-manage.com https:\/\/viewtest.com https:\/\/www.google-analytics.com; object-src 'self'" } |