Autocomplete on

Changes 'autocomplete=off' to 'autocomplete=on' in web pages, so your passwords will be remembered.

Co to jest Autocomplete on?

Autocomplete on to rozszerzenie Chrome opracowane przez Tomas Kafka, a jego główną funkcją jest „Changes 'autocomplete=off' to 'autocomplete=on' in web pages, so your passwords will be remembered.”.

Pobierz plik CRX rozszerzenia Autocomplete on

Pobierz pliki rozszerzeń Autocomplete on w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        autocomplete_on
===============

chrome extension to turn on autocomplete


https://chrome.google.com/webstore/detail/autocomplete-on/gdhbgagnmhdafendedikgjimegoipbnk


clone of https://chrome.google.com/webstore/detail/autocomplete-on/ecpgkdflcnofdbbkiggklcfmgbnbabhh/related

made a clone because i couldn't trust that the other one wouldn't be auto-updated and start stealing my passwords.

I don't trust any extensions that want access to all websites I visit!

Consider making your own clone :-)

source code: https://github.com/kzahel/autocomplete_on                    

Podstawowe informacje o rozszerzeniu

Nazwa Autocomplete on Autocomplete on
ID dmgaojnlejjhojlgplleamihdkffahbg
Oficjalny URL https://chrome.google.com/webstore/detail/autocomplete-on/dmgaojnlejjhojlgplleamihdkffahbg
Opis Changes 'autocomplete=off' to 'autocomplete=on' in web pages, so your passwords will be remembered.
Rozmiar pliku 5.71 KB
Liczba instalacji 362
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2017-05-30
Data Publikacji 2017-05-30
Deweloper Tomas Kafka
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "content_scripts": [
        {
            "js": [
                "autocomplete.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "description": "Changes 'autocomplete=off' to 'autocomplete=on' in web pages, so your passwords will be remembered.",
    "icons": {
        "32": "icon32.png"
    },
    "name": "Autocomplete on",
    "version": "1.0",
    "manifest_version": 2
}