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文件
下载Amazon Influencer Toolkit扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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" } } |