Amazon Influencer Toolkit
Helps you find the best item to make a review video.
Amazon Influencer Toolkit란 무엇입니까?
Amazon Influencer Toolkit은(는) Vilius K에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Helps you find the best item to make a review video."입니다.
확장 프로그램 스크린샷
Amazon Influencer Toolkit 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
The Amazon Influencers Toolkit streamlines your workflow by automating the process of collecting product information from your orders or search lists, helping you save time and focus on other tasks. With the simple click of a button, you can sit back and relax while the extension gathers all the necessary information about the items and determines which ones are worth making a video about. Get premium access https://vilkazdev.gumroad.com/l/amazon-influencers-toolkit
확장 프로그램 기본 정보
이름 | Amazon Influencer Toolkit |
ID | ddnbmaopoeolghdgdjenkoieipfjgdlj |
공식 URL | https://chromewebstore.google.com/detail/amazon-influencer-toolkit/ddnbmaopoeolghdgdjenkoieipfjgdlj |
설명 | Helps you find the best item to make a review video. |
파일 크기 | 74.38 KB |
설치 횟수 | 179 |
현재 버전 | 0.3.2 |
최근 업데이트 | 2023-10-22 |
출시 날짜 | 2023-01-18 |
개발자 | Vilius K |
이메일 | [email protected] |
결제 유형 | in_app |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Amazon Influencer Toolkit", "version": "0.3.2", "description": "Helps you find the best item to make a review video.", "permissions": [ "storage", "activeTab" ], "host_permissions": [ "https:\/\/www.amazon.com\/*", "https:\/\/www.amazon.de\/*", "https:\/\/www.amazon.es\/*", "https:\/\/www.amazon.fr\/*", "https:\/\/www.amazon.it\/*", "https:\/\/www.amazon.nl\/*", "https:\/\/www.amazon.se\/*", "https:\/\/www.amazon.co.uk\/*" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/www.amazon.com\/*", "https:\/\/www.amazon.de\/*", "https:\/\/www.amazon.es\/*", "https:\/\/www.amazon.fr\/*", "https:\/\/www.amazon.it\/*", "https:\/\/www.amazon.nl\/*", "https:\/\/www.amazon.se\/*", "https:\/\/www.amazon.co.uk\/*" ], "js": [ "content.js" ] } ], "action": { "default_icon": { "16": "icons\/16x16.png", "32": "icons\/32x32.png" }, "default_title": "Amazon influencer toolkit", "default_popup": "popup.html" }, "icons": { "16": "icons\/16x16.png", "48": "icons\/48x48.png", "128": "icons\/128x128.png" } } |