Autocomplete Control

Control (Disable/enforce) browser autocomplete on your need

什么是Autocomplete Control?

Autocomplete Control是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“Control (Disable/enforce) browser autocomplete on your need”。

扩展截图

screenshot

下载Autocomplete Control扩展crx文件

下载Autocomplete Control扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Autocomplete Control – Browser extension, which gives you more control over form autocomplete feature.

Available options:
- Do nothing (standard browser behavior)
- Disable autocomplete (enabled by default)
- Force enable autocomplete                    

扩展基本信息

名称 Autocomplete Control Autocomplete Control
ID obadmbiiipafnncogfkdfionggeckfia
官方URL https://chromewebstore.google.com/detail/autocomplete-control/obadmbiiipafnncogfkdfionggeckfia
简介 Control (Disable/enforce) browser autocomplete on your need
文件大小 62.37 KB
安装次数 292
当前版本 20.2.12.107
更新时间 2020-02-18
上架时间 2020-02-16
评分 2.33/5 共3次评分
开发者 Unknown
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Autocomplete Control",
    "version": "20.2.12.107",
    "author": "Ihor Kopach  (https:\/\/kopach.dev)",
    "description": "Control (Disable\/enforce) browser autocomplete on your need",
    "homepage_url": "https:\/\/github.com\/kopach\/autocomplete-control",
    "manifest_version": 2,
    "minimum_chrome_version": "74",
    "applications": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "67.0"
        }
    },
    "icons": {
        "128": "icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "chrome_style": true,
        "page": "options.html"
    },
    "content_scripts": [
        {
            "js": [
                "content_script.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "all_frames": true,
            "run_at": "document_idle"
        }
    ]
}