Avature Import Extension
This extension lets you import profiles from the web into Avature by importing downloaded files as person records in Avature.
什么是Avature Import Extension?
Avature Import Extension是由Avature开发的Chrome扩展程序,该扩展的主要功能是“This extension lets you import profiles from the web into Avature by importing downloaded files as person records in Avature.”。
扩展截图
下载Avature Import Extension扩展crx文件
下载Avature Import Extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
To get started, please contact your Avature representative or reach out to [email protected].
扩展基本信息
名称 | Avature Import Extension |
ID | jhebmnhkiibndelgcgpgcacgckcbaail |
官方URL | https://chromewebstore.google.com/detail/avature-import-extension/jhebmnhkiibndelgcgpgcacgckcbaail |
简介 | This extension lets you import profiles from the web into Avature by importing downloaded files as person records in Avature. |
文件大小 | 703 KB |
安装次数 | 20,000 |
当前版本 | 2.4 |
更新时间 | 2024-02-25 |
上架时间 | 2020-06-20 |
评分 | 5.00/5 共17次评分 |
开发者 | Avature |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Avature Import Extension", "short_name": "AvaImport", "version": "2.4", "manifest_version": 3, "description": "This extension lets you import profiles from the web into Avature by importing downloaded files as person records in Avature.", "permissions": [ "activeTab", "cookies", "downloads", "storage" ], "host_permissions": [ "https:\/\/*\/" ], "background": { "service_worker": "background.js" }, "action": { "default_icon": { "16": "icon_red16.png", "32": "icon_red32.png", "48": "icon_red48.png", "128": "icon_red128.png" } }, "icons": { "16": "icon_red16.png", "32": "icon_red32.png", "48": "icon_red48.png", "128": "icon_red128.png" }, "web_accessible_resources": [ { "resources": [ "index.html" ], "matches": [ "https:\/\/*\/*" ] } ], "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "js": [ "\/scripts.js" ], "css": [ "\/scripts.css" ] } ] } |