Form Fill Utility
Fills the form automatically in the assisted-service.egov-nsdl.com and myutiitsl website based on the cookies created from a website
什么是Form Fill Utility?
Form Fill Utility是由rskextention开发的Chrome扩展程序,该扩展的主要功能是“Fills the form automatically in the assisted-service.egov-nsdl.com and myutiitsl website based on the cookies created from a website”。
扩展截图
下载Form Fill Utility扩展crx文件
下载Form Fill Utility扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
It fills the form based on the cookies that are created in the website. It reads the cookies from browser and fills the form 扩展基本信息
| 名称 | |
| ID | bekmfampknpcadmjekhhinmolcaidpaf |
| 官方URL | https://chromewebstore.google.com/detail/form-fill-utility/bekmfampknpcadmjekhhinmolcaidpaf |
| 简介 | Fills the form automatically in the assisted-service.egov-nsdl.com and myutiitsl website based on the cookies created from a website |
| 文件大小 | 16.84 KB |
| 安装次数 | 13,118 |
| 当前版本 | 2.4 |
| 更新时间 | 2024-01-27 |
| 上架时间 | 2022-10-20 |
| 评分 | 4.25/5 共4次评分 |
| 开发者 | rskextention |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 隐私政策页面URL | https://ruraleservices.com/agent/privacypolicy |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Form Fill Utility",
"version": "2.4",
"description": "Fills the form automatically in the assisted-service.egov-nsdl.com and myutiitsl website based on the cookies created from a website",
"permissions": [
"cookies",
"storage"
],
"host_permissions": [
"*:\/\/assisted-service.egov-nsdl.com\/*",
"*:\/\/www.myutiitsl.com\/*",
"*:\/\/ruraleservices.com\/*"
],
"background": {
"service_worker": "background.js"
},
"manifest_version": 3,
"icons": {
"16": "images\/get_started16.png",
"32": "images\/get_started32.png",
"48": "images\/get_started48.png",
"128": "images\/get_started128.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/assisted-service.egov-nsdl.com\/*",
"*:\/\/www.myutiitsl.com\/*"
],
"run_at": "document_end",
"js": [
"contentScript.js"
]
}
]
} | |