Amazon SEO Assistant
Find out if your listing is optimized for Amazon SEO. Get recommendations for improvements.
Amazon SEO Assistant란 무엇입니까?
Amazon SEO Assistant은(는) amazonsellingassistant에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Find out if your listing is optimized for Amazon SEO. Get recommendations for improvements."입니다.
확장 프로그램 스크린샷
Amazon SEO Assistant 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension is created to help sellers on Amazon make sure that product listings meet SEO requirements. Simply open any listing on Amazon.com and you will see results of SEO validator. If some elements are not optimized, you will see exact recommendations how to make you listing better for Amazon search algorithm and your buyers. Extension checks the following listing elements: - Title - Bullet points - Description - Images - Brand & Cateroty - Fulfillment method - Reviews and Rating Recommendations are based on data from Amazon and best SEO guides. Compact mode allows to use quick view for SEO rank, and if it's not 90+%, look at the recommendations.
확장 프로그램 기본 정보
이름 | Amazon SEO Assistant |
ID | kbomhfjppdgllelhnikpdcocckadacia |
공식 URL | https://chromewebstore.google.com/detail/amazon-seo-assistant/kbomhfjppdgllelhnikpdcocckadacia |
설명 | Find out if your listing is optimized for Amazon SEO. Get recommendations for improvements. |
파일 크기 | 22.03 KB |
설치 횟수 | 783 |
현재 버전 | 1.0.3.7 |
최근 업데이트 | 2022-02-17 |
출시 날짜 | 2019-04-30 |
평점 | 3.20/5 총 5 개의 평점 |
개발자 | amazonsellingassistant |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Amazon SEO Assistant", "description": "Find out if your listing is optimized for Amazon SEO. Get recommendations for improvements.", "version": "1.0.3.7", "icons": { "16": "icons\/16x16.png", "48": "icons\/48x48.png", "128": "icons\/128x128.png" }, "background": { "persistent": false, "scripts": [ "background.js" ] }, "browser_action": { "default_popup": "popup.html", "default_icon": "icons\/48x48.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.amazon.com\/*" ], "css": [ "style.css" ], "js": [ "dp-content.js", "listing-content.js" ] } ], "permissions": [ "*:\/\/*.amazon.com\/*" ], "web_accessible_resources": [ "images\/*" ], "content_security_policy": "script-src 'self' https:\/\/www.gstatic.com\/ https:\/\/*.firebaseio.com https:\/\/firestore.googleapis.com https:\/\/www.googleapis.com; object-src 'self'; connect-src 'self' wss:\/\/*.firebaseio.com https:\/\/firestore.googleapis.com;" } |