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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
        }
    ]
}