Auto Accept
A browser Extension which locks incoming cases
什么是Auto Accept?
Auto Accept是由seposwatdevelopers开发的Chrome扩展程序,该扩展的主要功能是“A browser Extension which locks incoming cases”。
扩展截图
下载Auto Accept扩展crx文件
下载Auto Accept扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
It is an internal tool for employees to increase the productivity. Perform an click event on buttons popups in a webpage automatically. Used to automatically lock the tasks popups in a webpage to the employees. 扩展基本信息
| 名称 | |
| ID | dfjbjopjjapbanohpdnagalchfjkdfmo |
| 官方URL | https://chromewebstore.google.com/detail/auto-accept/dfjbjopjjapbanohpdnagalchfjkdfmo |
| 简介 | A browser Extension which locks incoming cases |
| 文件大小 | 38.34 KB |
| 安装次数 | 230 |
| 当前版本 | 1.1 |
| 更新时间 | 2023-10-05 |
| 上架时间 | 2023-09-13 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | seposwatdevelopers |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Auto Accept",
"version": "1.1",
"manifest_version": 3,
"author": "Rahul R(mzrmm@)",
"description": " A browser Extension which locks incoming cases",
"action": {
"default_popup": "Accept.html",
"default-icon": "logo.png"
},
"icons": {
"128": "logo.png"
},
"permissions": [
"notifications"
],
"background": {
"service_worker": "background.js"
},
"host_permissions": [
"https:\/\/paragon-na.amazon.com\/hz\/*",
"https:\/\/paragon-eu.amazon.com\/hz\/*",
"https:\/\/paragon-fe.amazon.com\/hz\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/paragon-na.amazon.com\/hz\/*",
"https:\/\/paragon-eu.amazon.com\/hz\/*",
"https:\/\/paragon-fe.amazon.com\/hz\/*"
],
"js": [
"content.js"
]
}
]
} | |